| @@ -2235,6 +2235,16 @@ ARG is ignored." | |||||
| (defvar my-rgrep-alist | (defvar my-rgrep-alist | ||||
| `( | `( | ||||
| ;; the silver searcher | |||||
| ("ag" | |||||
| (executable-find "ag") | |||||
| "ag --nocolor --nogroup --nopager ") | |||||
| ;; ack | |||||
| ("ack" | |||||
| (executable-find "ack") | |||||
| "ack --nocolor --nogroup --nopager ") | |||||
| ;; gnu global | ;; gnu global | ||||
| ("global" | ("global" | ||||
| (and (require 'gtags nil t) | (and (require 'gtags nil t) | ||||
| @@ -2248,16 +2258,6 @@ ARG is ignored." | |||||
| (shell-command "git rev-parse --git-dir")) | (shell-command "git rev-parse --git-dir")) | ||||
| "git --no-pager -c color.grep=false grep -nH -e ") | "git --no-pager -c color.grep=false grep -nH -e ") | ||||
| ;; the silver searcher | |||||
| ("ag" | |||||
| (executable-find "ag") | |||||
| "ag --nocolor --nogroup --nopager ") | |||||
| ;; ack | |||||
| ("ack" | |||||
| (executable-find "ack") | |||||
| "ack --nocolor --nogroup --nopager ") | |||||
| ;; grep | ;; grep | ||||
| ("grep" | ("grep" | ||||
| t | t | ||||