diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-02-21 17:53:52 -0200 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-02-21 17:53:52 -0200 |
commit | 85dc0ab2137d793a43967e8771933161b1701c47 (patch) | |
tree | 3c2afaee1470e22cc31eff3d1a629a2a278791b2 /sx-search.el | |
parent | 5f2a058a088229264c9e900527c7be7d915b43b9 (diff) | |
parent | ca121c0c65e0e689af2ee859fdd8ebea8bc44bc5 (diff) |
Merge branch 'master' into images
Diffstat (limited to 'sx-search.el')
-rw-r--r-- | sx-search.el | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/sx-search.el b/sx-search.el index b33efff..b245cbe 100644 --- a/sx-search.el +++ b/sx-search.el @@ -126,9 +126,15 @@ prefix argument, the user is asked for everything." (let ((tag (save-excursion (when pos (goto-char pos)) (or (get-text-property (point) 'sx-tag) - (thing-at-point 'symbol))))) - (sx-search (or sx-question-list--site - (sx-assoc-let sx-question-mode--data .site_par)) + (thing-at-point 'symbol)))) + (meta (save-excursion + (when pos (goto-char pos)) + (get-text-property (point) 'sx-tag-meta))) + (site (replace-regexp-in-string + (rx string-start "meta.") "" + (or sx-question-list--site + (sx-assoc-let sx-question-mode--data .site_par))))) + (sx-search (concat (when meta "meta.") site) nil tag))) (provide 'sx-search) |