1 ;;; grep.el --- run Grep as inferior of Emacs, parse match messages
3 ;; Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4 ;; 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
5 ;; Free Software Foundation, Inc.
7 ;; Author: Roland McGrath <roland@gnu.org>
9 ;; Keywords: tools, processes
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation; either version 3, or (at your option)
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the
25 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
26 ;; Boston, MA 02110-1301, USA.
30 ;; This package provides the grep facilities documented in the Emacs
39 "Run grep as inferior of Emacs, parse error messages."
45 (defcustom grep-window-height nil
46 "*Number of lines in a grep window. If nil, use `compilation-window-height'."
47 :type
'(choice (const :tag
"Default" nil
)
52 (defcustom grep-highlight-matches
'auto-detect
53 "If t, use special markers to highlight grep matches.
55 Some grep programs are able to surround matches with special
56 markers in grep output. Such markers can be used to highlight
59 This option sets the environment variable GREP_COLOR to specify
60 markers for highlighting and GREP_OPTIONS to add the --color
61 option in front of any explicit grep options before starting
64 The default value of this variable is set up by `grep-compute-defaults';
65 call that function before using this variable in your program."
66 :type
'(choice (const :tag
"Do not highlight matches with grep markers" nil
)
67 (const :tag
"Highlight matches with grep markers" t
)
68 (other :tag
"Not Set" auto-detect
))
72 (defcustom grep-scroll-output nil
73 "*Non-nil to scroll the *grep* buffer window as output appears.
75 Setting it causes the grep commands to put point at the end of their
76 output window so that the end of the output is always visible rather
83 (defcustom grep-command nil
84 "The default grep command for \\[grep].
85 If the grep program used supports an option to always include file names
86 in its output (such as the `-H' option to GNU grep), it's a good idea to
87 include it when specifying `grep-command'.
89 The default value of this variable is set up by `grep-compute-defaults';
90 call that function before using this variable in your program."
92 (const :tag
"Not Set" nil
))
95 (defcustom grep-template nil
96 "The default command to run for \\[lgrep].
97 The default value of this variable is set up by `grep-compute-defaults';
98 call that function before using this variable in your program.
99 The following place holders should be present in the string:
100 <C> - place to put -i if case insensitive grep.
101 <F> - file names and wildcards to search.
102 <R> - the regular expression searched for.
103 <N> - place to insert null-device."
104 :type
'(choice string
105 (const :tag
"Not Set" nil
))
109 (defcustom grep-use-null-device
'auto-detect
110 "If t, append the value of `null-device' to `grep' commands.
111 This is done to ensure that the output of grep includes the filename of
112 any match in the case where only a single file is searched, and is not
113 necessary if the grep program used supports the `-H' option.
115 The default value of this variable is set up by `grep-compute-defaults';
116 call that function before using this variable in your program."
117 :type
'(choice (const :tag
"Do Not Append Null Device" nil
)
118 (const :tag
"Append Null Device" t
)
119 (other :tag
"Not Set" auto-detect
))
123 (defcustom grep-find-command nil
124 "The default find command for \\[grep-find].
125 The default value of this variable is set up by `grep-compute-defaults';
126 call that function before using this variable in your program."
127 :type
'(choice string
128 (const :tag
"Not Set" nil
))
131 (defcustom grep-find-template nil
132 "The default command to run for \\[rgrep].
133 The default value of this variable is set up by `grep-compute-defaults';
134 call that function before using this variable in your program.
135 The following place holders should be present in the string:
136 <D> - base directory for find
137 <X> - find options to restrict or expand the directory list
138 <F> - find options to limit the files matched
139 <C> - place to put -i if case insensitive grep
140 <R> - the regular expression searched for."
141 :type
'(choice string
142 (const :tag
"Not Set" nil
))
146 (defcustom grep-files-aliases
153 ("l" .
"[Cc]hange[Ll]og*")
154 ("m" .
"[Mm]akefile*")
157 "*Alist of aliases for the FILES argument to `lgrep' and `rgrep'."
161 (defcustom grep-find-ignored-directories
162 vc-directory-exclusion-list
163 "*List of names of sub-directories which `rgrep' shall not recurse into."
164 :type
'(repeat string
)
167 (defcustom grep-error-screen-columns nil
168 "*If non-nil, column numbers in grep hits are screen columns.
169 See `compilation-error-screen-columns'"
170 :type
'(choice (const :tag
"Default" nil
)
176 (defcustom grep-setup-hook nil
177 "List of hook functions run by `grep-process-setup' (see `run-hooks')."
181 (defvar grep-mode-map
182 (let ((map (cons 'keymap compilation-minor-mode-map
)))
183 (define-key map
" " 'scroll-up
)
184 (define-key map
"\^?" 'scroll-down
)
185 (define-key map
"\C-c\C-f" 'next-error-follow-minor-mode
)
187 (define-key map
"\r" 'compile-goto-error
) ;; ?
188 (define-key map
"n" 'next-error-no-select
)
189 (define-key map
"p" 'previous-error-no-select
)
190 (define-key map
"{" 'compilation-previous-file
)
191 (define-key map
"}" 'compilation-next-file
)
192 (define-key map
"\t" 'compilation-next-error
)
193 (define-key map
[backtab] 'compilation-previous-error)
195 ;; Set up the menu-bar
196 (define-key map [menu-bar grep]
197 (cons "Grep" (make-sparse-keymap "Grep")))
199 (define-key map [menu-bar grep compilation-kill-compilation]
200 '(menu-item "Kill Grep" kill-compilation
201 :help "Kill the currently running grep process"))
202 (define-key map [menu-bar grep compilation-separator2] '("----"))
203 (define-key map [menu-bar grep compilation-compile]
204 '(menu-item "Compile..." compile
205 :help "Compile the program including the current buffer. Default: run `make'"))
206 (define-key map [menu-bar grep compilation-grep]
207 '(menu-item "Another grep..." grep
208 :help "Run grep, with user-specified args, and collect output in a buffer."))
209 (define-key map [menu-bar grep compilation-grep-find]
210 '(menu-item "Recursive grep..." grep-find
211 :help "Run grep via find, with user-specified args"))
212 (define-key map [menu-bar grep compilation-recompile]
213 '(menu-item "Repeat grep" recompile
214 :help "Run grep again"))
215 (define-key map [menu-bar grep compilation-separator2] '("----"))
216 (define-key map [menu-bar grep compilation-first-error]
217 '(menu-item "First Match" first-error
218 :help "Restart at the first match, visit corresponding location"))
219 (define-key map [menu-bar grep compilation-previous-error]
220 '(menu-item "Previous Match" previous-error
221 :help "Visit the previous match and corresponding location"))
222 (define-key map [menu-bar grep compilation-next-error]
223 '(menu-item "Next Match" next-error
224 :help "Visit the next match and corresponding location"))
226 "Keymap for grep buffers.
227 `compilation-minor-mode-map' is a cdr of this.")
229 (defvar grep-mode-tool-bar-map
230 (if (display-graphic-p)
231 (let ((map (butlast (copy-keymap tool-bar-map)))
232 (help (last tool-bar-map))) ;; Keep Help last in tool bar
234 "left-arrow" 'previous-error-no-select 'previous-error-no-select map
236 :help "Goto previous match")
238 "right-arrow" 'next-error-no-select 'next-error-no-select map
240 :help "Goto next match")
242 "cancel" 'kill-compilation 'kill-compilation map
245 "refresh" 'recompile 'recompile map
246 :help "Restart grep")
249 (defalias 'kill-grep 'kill-compilation)
251 ;;;; TODO --- refine this!!
253 ;;; (defcustom grep-use-compilation-buffer t
254 ;;; "When non-nil, grep specific commands update `compilation-last-buffer'.
255 ;;; This means that standard compile commands like \\[next-error] and \\[compile-goto-error]
256 ;;; can be used to navigate between grep matches (the default).
257 ;;; Otherwise, the grep specific commands like \\[grep-next-match] must
258 ;;; be used to navigate between grep matches."
262 ;; override compilation-last-buffer
263 (defvar grep-last-buffer nil
264 "The most recent grep buffer.
265 A grep buffer becomes most recent when you select Grep mode in it.
266 Notice that using \\[next-error] or \\[compile-goto-error] modifies
267 `complation-last-buffer' rather than `grep-last-buffer'.")
270 (defvar grep-regexp-alist
271 '(("^\\(.+?\\)\\(:[ \t]*\\)\\([0-9]+\\)\\2"
273 ;; Rule to match column numbers is commented out since no known grep
275 ;; ("^\\(.+?\\)\\(:[ \t]*\\)\\([0-9]+\\)\\2\\(?:\\([0-9]+\\)\\(?:-\\([0-9]+\\)\\)?\\2\\)?"
277 ("^\\(\\(.+?\\):\\([0-9]+\\):\\).*?\
278 \\(\033\\[01;31m\\(?:\033\\[K\\)?\\)\\(.*?\\)\\(\033\\[[0-9]*m\\)"
280 ;; Calculate column positions (beg . end) of first grep match on a line
282 (setq compilation-error-screen-columns nil)
283 (- (match-beginning 4) (match-end 1)))
285 (lambda () (- (match-end 5) (match-end 1)
286 (- (match-end 4) (match-beginning 4)))))
288 ("^Binary file \\(.+\\) matches$" 1 nil nil 0 1))
289 "Regexp used to match grep hits. See `compilation-error-regexp-alist'.")
291 (defvar grep-error "grep hit"
292 "Message to print when no matches are found.")
294 ;; Reverse the colors because grep hits are not errors (though we jump there
295 ;; with `next-error'), and unreadable files can't be gone to.
296 (defvar grep-hit-face compilation-info-face
297 "Face name to use for grep hits.")
299 (defvar grep-error-face 'compilation-error
300 "Face name to use for grep error messages.")
302 (defvar grep-match-face 'match
303 "Face name to use for grep matches.")
305 (defvar grep-context-face 'shadow
306 "Face name to use for grep context lines.")
308 (defvar grep-mode-font-lock-keywords
309 '(;; Command output lines.
310 ("^\\([A-Za-z_0-9/\.+-]+\\)[ \t]*:" 1 font-lock-function-name-face)
311 (": \\(.+\\): \\(?:Permission denied\\|No such \\(?:file or directory\\|device or address\\)\\)$"
313 ;; remove match from grep-regexp-alist before fontifying
314 ("^Grep[/a-zA-z]* started.*"
315 (0 '(face nil message nil help-echo nil mouse-face nil) t))
316 ("^Grep[/a-zA-z]* finished \\(?:(\\(matches found\\))\\|with \\(no matches found\\)\\).*"
317 (0 '(face nil message nil help-echo nil mouse-face nil) t)
318 (1 compilation-info-face nil t)
319 (2 compilation-warning-face nil t))
320 ("^Grep[/a-zA-z]* \\(exited abnormally\\|interrupt\\|killed\\|terminated\\)\\(?:.*with code \\([0-9]+\\)\\)?.*"
321 (0 '(face nil message nil help-echo nil mouse-face nil) t)
323 (2 grep-error-face nil t))
324 ("^.+?-[0-9]+-.*\n" (0 grep-context-face))
325 ;; Highlight grep matches and delete markers
326 ("\\(\033\\[01;31m\\)\\(.*?\\)\\(\033\\[[0-9]*m\\)"
327 ;; Refontification does not work after the markers have been
328 ;; deleted. So we use the font-lock-face property here as Font
329 ;; Lock does not clear that.
330 (2 (list 'face nil 'font-lock-face grep-match-face))
333 ;; Delete markers with `replace-match' because it updates
334 ;; the match-data, whereas `delete-region' would render it obsolete.
335 (replace-match "" t t nil 3)
336 (replace-match "" t t nil 1))))
337 ("\\(\033\\[[0-9;]*[mK]\\)"
338 ;; Delete all remaining escape sequences
340 (replace-match "" t t nil 1))))
341 "Additional things to highlight in grep output.
342 This gets tacked on the end of the generated expressions.")
345 (defvar grep-program "grep"
346 "The default grep program for `grep-command' and `grep-find-command'.
347 This variable's value takes effect when `grep-compute-defaults' is called.")
350 (defvar find-program "find"
351 "The default find program for `grep-find-command'.
352 This variable's value takes effect when `grep-compute-defaults' is called.")
355 (defvar xargs-program "xargs"
356 "The default xargs program for `grep-find-command'.
357 See `grep-find-use-xargs'.
358 This variable's value takes effect when `grep-compute-defaults' is called.")
361 (defvar grep-find-use-xargs nil
362 "Non-nil means that `grep-find' uses the `xargs' utility by default.
363 If `exec', use `find -exec'.
364 If `gnu', use `find -print0' and `xargs -0'.
365 Any other non-nil value means to use `find -print' and `xargs'.
367 This variable's value takes effect when `grep-compute-defaults' is called.")
369 ;; History of grep commands.
371 (defvar grep-history nil)
373 (defvar grep-find-history nil)
375 ;; History of lgrep and rgrep regexp and files args.
376 (defvar grep-regexp-history nil)
377 (defvar grep-files-history '("ch" "el"))
379 (defvar grep-host-defaults-alist nil
380 "Default values depending on target host.
381 `grep-compute-defaults' returns default values for every local or
382 remote host `grep' runs. These values can differ from host to
383 host. Once computed, the default values are kept here in order
384 to avoid computing them again.")
387 (defun grep-process-setup ()
388 "Setup compilation variables and buffer for `grep'.
389 Set up `compilation-exit-message-function' and run `grep-setup-hook'."
390 (unless (or (not grep-highlight-matches) (eq grep-highlight-matches t))
391 (grep-compute-defaults))
392 (when (eq grep-highlight-matches t)
393 ;; `setenv' modifies `process-environment' let-bound in `compilation-start'
394 ;; Any TERM except "dumb" allows GNU grep to use `--color=auto'
395 (setenv "TERM" "emacs-grep")
396 ;; `--color=auto' emits escape sequences on a tty rather than on a pipe,
397 ;; thus allowing to use multiple grep filters on the command line
398 ;; and to output escape sequences only on the final grep output
399 (setenv "GREP_OPTIONS" (concat (getenv "GREP_OPTIONS") " --color=auto"))
400 ;; GREP_COLOR is used in GNU grep 2.5.1, but deprecated in later versions
401 (setenv "GREP_COLOR" "01;31")
402 ;; GREP_COLORS is used in GNU grep 2.5.2 and later versions
403 (setenv "GREP_COLORS" "mt=01;31:fn=:ln=:bn=:se=:ml=:cx=:ne"))
404 (set (make-local-variable 'compilation-exit-message-function)
405 (lambda (status code msg)
406 (if (eq status 'exit)
408 '("finished (matches found)\n" . "matched"))
410 '("finished with no matches found\n" . "no match"))
414 (run-hooks 'grep-setup-hook))
416 (defun grep-probe (command args &optional func result)
417 (equal (condition-case nil
418 (apply (or func 'process-file) command args)
423 (defun grep-compute-defaults ()
424 ;; Keep default values.
425 (unless grep-host-defaults-alist
427 'grep-host-defaults-alist
429 `((grep-command ,grep-command)
430 (grep-template ,grep-template)
431 (grep-use-null-device ,grep-use-null-device)
432 (grep-find-command ,grep-find-command)
433 (grep-find-template ,grep-find-template)
434 (grep-find-use-xargs ,grep-find-use-xargs)
435 (grep-highlight-matches ,grep-highlight-matches)))))
437 (intern (or (file-remote-p default-directory) "localhost")))
438 (host-defaults (assq host-id grep-host-defaults-alist))
439 (defaults (assq nil grep-host-defaults-alist)))
440 ;; There are different defaults on different hosts. They must be
441 ;; computed for every host once.
443 (or (cadr (assq 'grep-command host-defaults))
444 (cadr (assq 'grep-command defaults)))
447 (or (cadr (assq 'grep-template host-defaults))
448 (cadr (assq 'grep-template defaults)))
451 (or (cadr (assq 'grep-use-null-device host-defaults))
452 (cadr (assq 'grep-use-null-device defaults)))
455 (or (cadr (assq 'grep-find-command host-defaults))
456 (cadr (assq 'grep-find-command defaults)))
459 (or (cadr (assq 'grep-find-template host-defaults))
460 (cadr (assq 'grep-find-template defaults)))
463 (or (cadr (assq 'grep-find-use-xargs host-defaults))
464 (cadr (assq 'grep-find-use-xargs defaults)))
466 grep-highlight-matches
467 (or (cadr (assq 'grep-highlight-matches host-defaults))
468 (cadr (assq 'grep-highlight-matches defaults))))
470 (unless (or (not grep-use-null-device) (eq grep-use-null-device t))
471 (setq grep-use-null-device
473 (let ((hello-file (expand-file-name "HELLO" data-directory)))
475 (and (if grep-command
476 ;; `grep-command' is already set, so
477 ;; use that for testing.
478 (grep-probe grep-command
479 `(nil t nil "^English" ,hello-file)
480 #'call-process-shell-command)
481 ;; otherwise use `grep-program'
482 (grep-probe grep-program
483 `(nil t nil "-nH" "^English" ,hello-file)))
485 (goto-char (point-min))
487 (concat (regexp-quote hello-file)
488 ":[0-9]+:English")))))))))
489 (unless (and grep-command grep-find-command
490 grep-template grep-find-template)
492 (concat (if grep-use-null-device "-n" "-nH")
493 (if (grep-probe grep-program
494 `(nil nil nil "-e" "foo" ,null-device)
499 (format "%s %s " grep-program grep-options)))
500 (unless grep-template
502 (format "%s <C> %s <R> <F>" grep-program grep-options)))
503 (unless grep-find-use-xargs
504 (setq grep-find-use-xargs
507 (grep-probe find-program `(nil nil nil ,null-device "-print0"))
508 (grep-probe xargs-program `(nil nil nil "-0" "-e" "echo")))
512 (unless grep-find-command
513 (setq grep-find-command
514 (cond ((eq grep-find-use-xargs 'gnu)
515 (format "%s . -type f -print0 | %s -0 -e %s"
516 find-program xargs-program grep-command))
517 ((eq grep-find-use-xargs 'exec)
518 (let ((cmd0 (format "%s . -type f -exec %s"
519 find-program grep-command)))
521 (format "%s {} %s %s"
523 (shell-quote-argument ";"))
524 (1+ (length cmd0)))))
526 (format "%s . -type f -print | %s %s"
527 find-program xargs-program grep-command)))))
528 (unless grep-find-template
529 (setq grep-find-template
530 (let ((gcmd (format "%s <C> %s <R>"
531 grep-program grep-options)))
532 (cond ((eq grep-find-use-xargs 'gnu)
533 (format "%s . <X> -type f <F> -print0 | %s -0 -e %s"
534 find-program xargs-program gcmd))
535 ((eq grep-find-use-xargs 'exec)
536 (format "%s . <X> -type f <F> -exec %s {} %s %s"
537 find-program gcmd null-device
538 (shell-quote-argument ";")))
540 (format "%s . <X> -type f <F> -print | %s %s"
541 find-program xargs-program gcmd))))))))
542 (unless (or (not grep-highlight-matches) (eq grep-highlight-matches t))
543 (setq grep-highlight-matches
545 (and (grep-probe grep-program '(nil t nil "--help"))
547 (goto-char (point-min))
548 (search-forward "--color" nil t))
551 ;; Save defaults for this host.
552 (setq grep-host-defaults-alist
553 (delete (assq host-id grep-host-defaults-alist)
554 grep-host-defaults-alist))
556 'grep-host-defaults-alist
558 `((grep-command ,grep-command)
559 (grep-template ,grep-template)
560 (grep-use-null-device ,grep-use-null-device)
561 (grep-find-command ,grep-find-command)
562 (grep-find-template ,grep-find-template)
563 (grep-find-use-xargs ,grep-find-use-xargs)
564 (grep-highlight-matches ,grep-highlight-matches))))))
566 (defun grep-tag-default ()
567 (or (and transient-mark-mode mark-active
569 (buffer-substring-no-properties (point) (mark)))
570 (funcall (or find-tag-default-function
571 (get major-mode 'find-tag-default-function)
575 (defun grep-default-command ()
576 "Compute the default grep command for \\[universal-argument] \\[grep] to offer."
577 (let ((tag-default (shell-quote-argument (grep-tag-default)))
578 ;; This a regexp to match single shell arguments.
579 ;; Could someone please add comments explaining it?
580 (sh-arg-re "\\(\\(?:\"\\(?:[^\"]\\|\\\\\"\\)+\"\\|'[^']+'\\|[^\"' \t\n]\\)+\\)")
581 (grep-default (or (car grep-history) grep-command)))
582 ;; In the default command, find the arg that specifies the pattern.
583 (when (or (string-match
584 (concat "[^ ]+\\s +\\(?:-[^ ]+\\s +\\)*"
585 sh-arg-re "\\(\\s +\\(\\S +\\)\\)?")
587 ;; If the string is not yet complete.
588 (string-match "\\(\\)\\'" grep-default))
589 ;; Maybe we will replace the pattern with the default tag.
590 ;; But first, maybe replace the file name pattern.
592 (unless (or (not (stringp buffer-file-name))
593 (when (match-beginning 2)
597 (file-name-nondirectory
598 (match-string 3 grep-default)))
599 (file-name-nondirectory buffer-file-name)))))
600 (setq grep-default (concat (substring grep-default
601 0 (match-beginning 2))
603 (file-name-extension buffer-file-name))))
604 ;; In case wildcard-to-regexp gets an error
605 ;; from invalid data.
607 ;; Now replace the pattern with the default tag.
608 (replace-match tag-default t t grep-default 1))))
612 (define-compilation-mode grep-mode "Grep"
613 "Sets `grep-last-buffer' and `compilation-window-height'."
614 (setq grep-last-buffer (current-buffer))
615 (set (make-local-variable 'tool-bar-map) grep-mode-tool-bar-map)
616 (set (make-local-variable 'compilation-error-face)
618 (set (make-local-variable 'compilation-error-regexp-alist)
620 (set (make-local-variable 'compilation-process-setup-function)
622 (set (make-local-variable 'compilation-disable-input) t))
626 (defun grep (command-args)
627 "Run grep, with user-specified args, and collect output in a buffer.
628 While grep runs asynchronously, you can use \\[next-error] (M-x next-error),
629 or \\<grep-mode-map>\\[compile-goto-error] in the grep \
630 output buffer, to go to the lines where grep
633 For doing a recursive `grep', see the `rgrep' command. For running
634 `grep' in a specific directory, see `lgrep'.
636 This command uses a special history list for its COMMAND-ARGS, so you
637 can easily repeat a grep command.
639 A prefix argument says to default the argument based upon the current
640 tag the cursor is over, substituting it into the last grep command
641 in the grep command history (or into `grep-command' if that history
645 (grep-compute-defaults)
646 (let ((default (grep-default-command)))
647 (list (read-from-minibuffer "Run grep (like this): "
648 (if current-prefix-arg
649 default grep-command)
650 nil nil 'grep-history
651 (if current-prefix-arg nil default))))))
653 ;; Setting process-setup-function makes exit-message-function work
654 ;; even when async processes aren't supported.
655 (compilation-start (if (and grep-use-null-device null-device)
656 (concat command-args " " null-device)
662 (defun grep-find (command-args)
663 "Run grep via find, with user-specified args COMMAND-ARGS.
664 Collect output in a buffer.
665 While find runs asynchronously, you can use the \\[next-error] command
666 to find the text that grep hits refer to.
668 This command uses a special history list for its arguments, so you can
669 easily repeat a find command."
672 (grep-compute-defaults)
673 (if grep-find-command
674 (list (read-from-minibuffer "Run find (like this): "
675 grep-find-command nil nil
677 ;; No default was set
679 "compile.el: No `grep-find-command' command available. Press RET.")
682 (let ((null-device nil)) ; see grep
683 (grep command-args))))
686 (defalias 'find-grep 'grep-find)
689 ;; User-friendly interactive API.
691 (defconst grep-expand-keywords
692 '(("<C>" . (and cf (isearch-no-upper-case-p regexp t) "-i"))
695 ("<N>" . null-device)
697 ("<R>" . (shell-quote-argument (or regexp ""))))
698 "List of substitutions performed by `grep-expand-template'.
699 If car of an element matches, the cdr is evalled in to get the
700 substitution string. Note dynamic scoping of variables.")
702 (defun grep-expand-template (template &optional regexp files dir excl)
703 "Patch grep COMMAND string replacing <C>, <D>, <F>, <R>, and <X>."
704 (let ((command template)
705 (cf case-fold-search)
706 (case-fold-search nil))
707 (dolist (kw grep-expand-keywords command)
708 (if (string-match (car kw) command)
711 (or (if (symbolp (cdr kw))
712 (symbol-value (cdr kw))
713 (save-match-data (eval (cdr kw))))
717 (defun grep-read-regexp ()
718 "Read regexp arg for interactive grep."
719 (let ((default (grep-tag-default)))
722 (if (and default (> (length default) 0))
723 (format " (default \"%s\"): " default) ": "))
724 nil 'grep-regexp-history default)))
726 (defun grep-read-files (regexp)
727 "Read files arg for interactive grep."
728 (let* ((bn (or (buffer-file-name) (buffer-name)))
731 (file-name-nondirectory bn)))
734 (let ((aliases grep-files-aliases)
737 (setq alias (car aliases)
738 aliases (cdr aliases))
739 (if (string-match (wildcard-to-regexp (cdr alias)) fn)
744 (let ((ext (file-name-extension fn)))
745 (and ext (concat "*." ext))))
746 (car grep-files-history)
747 (car (car grep-files-aliases))))
749 (concat "Search for \"" regexp
751 (if default (concat " (default " default ")"))
753 nil 'grep-files-history default)))
755 (or (cdr (assoc files grep-files-aliases))
759 (defun lgrep (regexp &optional files dir)
760 "Run grep, searching for REGEXP in FILES in directory DIR.
761 The search is limited to file names matching shell pattern FILES.
762 FILES may use abbreviations defined in `grep-files-aliases', e.g.
763 entering `ch' is equivalent to `*.[ch]'.
765 With \\[universal-argument] prefix, you can edit the constructed shell command line
766 before it is executed.
767 With two \\[universal-argument] prefixes, directly edit and run `grep-command'.
769 Collect output in a buffer. While grep runs asynchronously, you
770 can use \\[next-error] (M-x next-error), or \\<grep-mode-map>\\[compile-goto-error] \
771 in the grep output buffer,
772 to go to the lines where grep found matches.
774 This command shares argument histories with \\[rgrep] and \\[grep]."
777 (grep-compute-defaults)
779 ((and grep-command (equal current-prefix-arg '(16)))
780 (list (read-from-minibuffer "Run: " grep-command
781 nil nil 'grep-history)
785 (read-string "grep.el: No `grep-template' available. Press RET.")))
786 (t (let* ((regexp (grep-read-regexp))
787 (files (grep-read-files regexp))
788 (dir (read-directory-name "In directory: "
789 nil default-directory t)))
790 (list regexp files dir))))))
791 (when (and (stringp regexp) (> (length regexp) 0))
792 (let ((command regexp))
794 (if (string= command grep-command)
796 (setq dir (file-name-as-directory (expand-file-name dir)))
797 (setq command (grep-expand-template
802 (if (equal current-prefix-arg '(4))
804 (read-from-minibuffer "Confirm: "
805 command nil nil 'grep-history))
806 (add-to-history 'grep-history command))))
808 (let ((default-directory dir))
809 ;; Setting process-setup-function makes exit-message-function work
810 ;; even when async processes aren't supported.
811 (compilation-start (if (and grep-use-null-device null-device)
812 (concat command " " null-device)
815 (if (eq next-error-last-buffer (current-buffer))
816 (setq default-directory dir))))))
819 (defvar find-name-arg) ; autoloaded
822 (defun rgrep (regexp &optional files dir)
823 "Recursively grep for REGEXP in FILES in directory tree rooted at DIR.
824 The search is limited to file names matching shell pattern FILES.
825 FILES may use abbreviations defined in `grep-files-aliases', e.g.
826 entering `ch' is equivalent to `*.[ch]'.
828 With \\[universal-argument] prefix, you can edit the constructed shell command line
829 before it is executed.
830 With two \\[universal-argument] prefixes, directly edit and run `grep-find-command'.
832 Collect output in a buffer. While find runs asynchronously, you
833 can use \\[next-error] (M-x next-error), or \\<grep-mode-map>\\[compile-goto-error] \
834 in the grep output buffer,
835 to go to the lines where grep found matches.
837 This command shares argument histories with \\[lgrep] and \\[grep-find]."
840 (grep-compute-defaults)
842 ((and grep-find-command (equal current-prefix-arg '(16)))
843 (list (read-from-minibuffer "Run: " grep-find-command
844 nil nil 'grep-find-history)
846 ((not grep-find-template)
848 (read-string "grep.el: No `grep-find-template' available. Press RET.")))
849 (t (let* ((regexp (grep-read-regexp))
850 (files (grep-read-files regexp))
851 (dir (read-directory-name "Base directory: "
852 nil default-directory t)))
853 (list regexp files dir))))))
854 (when (and (stringp regexp) (> (length regexp) 0))
856 (if (not (string= regexp grep-find-command))
857 (compilation-start regexp 'grep-mode))
858 (setq dir (file-name-as-directory (expand-file-name dir)))
859 (let ((command (grep-expand-template
862 (concat (shell-quote-argument "(")
863 " " find-name-arg " "
864 (mapconcat #'shell-quote-argument
866 (concat " -o " find-name-arg " "))
868 (shell-quote-argument ")"))
870 (and grep-find-ignored-directories
871 (concat (shell-quote-argument "(")
872 ;; we should use shell-quote-argument here
874 (mapconcat #'(lambda (dir)
875 (shell-quote-argument
877 grep-find-ignored-directories
880 (shell-quote-argument ")")
883 (if current-prefix-arg
885 (read-from-minibuffer "Confirm: "
886 command nil nil 'grep-find-history))
887 (add-to-history 'grep-find-history command))
888 (let ((default-directory dir))
889 (compilation-start command 'grep-mode))
890 ;; Set default-directory if we started rgrep in the *grep* buffer.
891 (if (eq next-error-last-buffer (current-buffer))
892 (setq default-directory dir)))))))
897 ;; arch-tag: 5a5b9169-a79d-4f38-9c38-f69615f39c4d
898 ;;; grep.el ends here