diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-07-02 15:19:09 +0100 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-07-02 15:19:09 +0100 |
commit | 472000c3077f436b93e5b7a8b8ef3ae8809cb0cb (patch) | |
tree | 4a7e55762d1f45504c212fa5439bd609543582c9 | |
parent | 4ebe7d34773f6bc4fda24ac40996757fb6ecd881 (diff) |
Fix #296 Make searching a bit fuzzier.
-rw-r--r-- | sx-search.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sx-search.el b/sx-search.el index 4e6c4f2..885cb53 100644 --- a/sx-search.el +++ b/sx-search.el @@ -54,9 +54,9 @@ Either QUERY or TAGS must be non-nil, or the search will fail. EXCLUDED-TAGS is only is used if TAGS is also provided. KEYWORDS is passed to `sx-method-call'." - (sx-method-call 'search + (sx-method-call 'search/advanced :keywords `((page . ,page) - (intitle . ,query) + (q . ,query) (tagged . ,tags) (nottagged . ,excluded-tags) ,@keywords) |