annotate lisp/progmodes/grep.el @ 94673:52b7a8c22af5

Switch to recommended form of GPLv3 permissions notice.
author Glenn Morris <rgm@gnu.org>
date Tue, 06 May 2008 07:18:39 +0000
parents c31e26fe0b1f
children b51bb57e843b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
62160
37249e74aa98 Fix file's header line.
Eli Zaretskii <eliz@gnu.org>
parents: 61902
diff changeset
1 ;;; grep.el --- run Grep as inferior of Emacs, parse match messages
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2
57769
e663f6b659a6 (grep-regexp-alist): Move match highlighting
Juri Linkov <juri@jurta.org>
parents: 57043
diff changeset
3 ;; Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
87560
62e8690b9f1a (find-name-arg): Declare for compiler.
Glenn Morris <rgm@gnu.org>
parents: 87523
diff changeset
4 ;; 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
62e8690b9f1a (find-name-arg): Declare for compiler.
Glenn Morris <rgm@gnu.org>
parents: 87523
diff changeset
5 ;; Free Software Foundation, Inc.
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
7 ;; Author: Roland McGrath <roland@gnu.org>
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
8 ;; Maintainer: FSF
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
9 ;; Keywords: tools, processes
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
10
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
11 ;; This file is part of GNU Emacs.
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
12
94673
52b7a8c22af5 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 94566
diff changeset
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
14 ;; it under the terms of the GNU General Public License as published by
94673
52b7a8c22af5 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 94566
diff changeset
15 ;; the Free Software Foundation, either version 3 of the License, or
52b7a8c22af5 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 94566
diff changeset
16 ;; (at your option) any later version.
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
17
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
18 ;; GNU Emacs is distributed in the hope that it will be useful,
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
21 ;; GNU General Public License for more details.
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
22
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
23 ;; You should have received a copy of the GNU General Public License
94673
52b7a8c22af5 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 94566
diff changeset
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
25
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
26 ;;; Commentary:
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
27
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
28 ;; This package provides the grep facilities documented in the Emacs
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
29 ;; user's manual.
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
30
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
31 ;;; Code:
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
32
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
33 (require 'compile)
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
34
65232
6b7109ed93a0 (font-lock-lines-before): Add defvar.
Juanma Barranquero <lekktu@gmail.com>
parents: 65126
diff changeset
35
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
36 (defgroup grep nil
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
37 "Run grep as inferior of Emacs, parse error messages."
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
38 :group 'tools
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
39 :group 'processes)
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
40
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
41
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
42 ;;;###autoload
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
43 (defcustom grep-window-height nil
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
44 "*Number of lines in a grep window. If nil, use `compilation-window-height'."
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
45 :type '(choice (const :tag "Default" nil)
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
46 integer)
59996
aac0a33f5772 Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents: 59991
diff changeset
47 :version "22.1"
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
48 :group 'grep)
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
49
56948
f6f74981c4b0 (grep-highlight-matches): Change default from
Juri Linkov <juri@jurta.org>
parents: 56921
diff changeset
50 (defcustom grep-highlight-matches 'auto-detect
56960
84482ed458f2 (grep-highlight-matches): Doc fix.
Juri Linkov <juri@jurta.org>
parents: 56948
diff changeset
51 "If t, use special markers to highlight grep matches.
56881
4be25baf31b5 (grep-highlight-matches): New defcustom.
Juri Linkov <juri@jurta.org>
parents: 56828
diff changeset
52
4be25baf31b5 (grep-highlight-matches): New defcustom.
Juri Linkov <juri@jurta.org>
parents: 56828
diff changeset
53 Some grep programs are able to surround matches with special
4be25baf31b5 (grep-highlight-matches): New defcustom.
Juri Linkov <juri@jurta.org>
parents: 56828
diff changeset
54 markers in grep output. Such markers can be used to highlight
4be25baf31b5 (grep-highlight-matches): New defcustom.
Juri Linkov <juri@jurta.org>
parents: 56828
diff changeset
55 matches in grep mode.
4be25baf31b5 (grep-highlight-matches): New defcustom.
Juri Linkov <juri@jurta.org>
parents: 56828
diff changeset
56
4be25baf31b5 (grep-highlight-matches): New defcustom.
Juri Linkov <juri@jurta.org>
parents: 56828
diff changeset
57 This option sets the environment variable GREP_COLOR to specify
4be25baf31b5 (grep-highlight-matches): New defcustom.
Juri Linkov <juri@jurta.org>
parents: 56828
diff changeset
58 markers for highlighting and GREP_OPTIONS to add the --color
4be25baf31b5 (grep-highlight-matches): New defcustom.
Juri Linkov <juri@jurta.org>
parents: 56828
diff changeset
59 option in front of any explicit grep options before starting
56960
84482ed458f2 (grep-highlight-matches): Doc fix.
Juri Linkov <juri@jurta.org>
parents: 56948
diff changeset
60 the grep.
84482ed458f2 (grep-highlight-matches): Doc fix.
Juri Linkov <juri@jurta.org>
parents: 56948
diff changeset
61
84482ed458f2 (grep-highlight-matches): Doc fix.
Juri Linkov <juri@jurta.org>
parents: 56948
diff changeset
62 The default value of this variable is set up by `grep-compute-defaults';
84482ed458f2 (grep-highlight-matches): Doc fix.
Juri Linkov <juri@jurta.org>
parents: 56948
diff changeset
63 call that function before using this variable in your program."
56948
f6f74981c4b0 (grep-highlight-matches): Change default from
Juri Linkov <juri@jurta.org>
parents: 56921
diff changeset
64 :type '(choice (const :tag "Do not highlight matches with grep markers" nil)
f6f74981c4b0 (grep-highlight-matches): Change default from
Juri Linkov <juri@jurta.org>
parents: 56921
diff changeset
65 (const :tag "Highlight matches with grep markers" t)
f6f74981c4b0 (grep-highlight-matches): Change default from
Juri Linkov <juri@jurta.org>
parents: 56921
diff changeset
66 (other :tag "Not Set" auto-detect))
59996
aac0a33f5772 Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents: 59991
diff changeset
67 :version "22.1"
56881
4be25baf31b5 (grep-highlight-matches): New defcustom.
Juri Linkov <juri@jurta.org>
parents: 56828
diff changeset
68 :group 'grep)
4be25baf31b5 (grep-highlight-matches): New defcustom.
Juri Linkov <juri@jurta.org>
parents: 56828
diff changeset
69
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
70 (defcustom grep-scroll-output nil
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
71 "*Non-nil to scroll the *grep* buffer window as output appears.
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
72
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
73 Setting it causes the grep commands to put point at the end of their
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
74 output window so that the end of the output is always visible rather
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
75 than the begining."
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
76 :type 'boolean
59996
aac0a33f5772 Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents: 59991
diff changeset
77 :version "22.1"
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
78 :group 'grep)
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
79
56333
eb4bc9a65835 (grep-compute-defaults, grep-command)
Eli Zaretskii <eliz@gnu.org>
parents: 56226
diff changeset
80 ;;;###autoload
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
81 (defcustom grep-command nil
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
82 "The default grep command for \\[grep].
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
83 If the grep program used supports an option to always include file names
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
84 in its output (such as the `-H' option to GNU grep), it's a good idea to
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
85 include it when specifying `grep-command'.
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
86
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
87 The default value of this variable is set up by `grep-compute-defaults';
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
88 call that function before using this variable in your program."
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
89 :type '(choice string
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
90 (const :tag "Not Set" nil))
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
91 :group 'grep)
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
92
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
93 (defcustom grep-template nil
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
94 "The default command to run for \\[lgrep].
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
95 The default value of this variable is set up by `grep-compute-defaults';
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
96 call that function before using this variable in your program.
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
97 The following place holders should be present in the string:
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
98 <C> - place to put -i if case insensitive grep.
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
99 <F> - file names and wildcards to search.
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
100 <R> - the regular expression searched for.
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
101 <N> - place to insert null-device."
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
102 :type '(choice string
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
103 (const :tag "Not Set" nil))
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
104 :version "22.1"
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
105 :group 'grep)
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
106
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
107 (defcustom grep-use-null-device 'auto-detect
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
108 "If t, append the value of `null-device' to `grep' commands.
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
109 This is done to ensure that the output of grep includes the filename of
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
110 any match in the case where only a single file is searched, and is not
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
111 necessary if the grep program used supports the `-H' option.
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
112
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
113 The default value of this variable is set up by `grep-compute-defaults';
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
114 call that function before using this variable in your program."
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
115 :type '(choice (const :tag "Do Not Append Null Device" nil)
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
116 (const :tag "Append Null Device" t)
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
117 (other :tag "Not Set" auto-detect))
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
118 :group 'grep)
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
119
56333
eb4bc9a65835 (grep-compute-defaults, grep-command)
Eli Zaretskii <eliz@gnu.org>
parents: 56226
diff changeset
120 ;;;###autoload
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
121 (defcustom grep-find-command nil
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
122 "The default find command for \\[grep-find].
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
123 The default value of this variable is set up by `grep-compute-defaults';
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
124 call that function before using this variable in your program."
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
125 :type '(choice string
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
126 (const :tag "Not Set" nil))
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
127 :group 'grep)
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
128
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
129 (defcustom grep-find-template nil
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
130 "The default command to run for \\[rgrep].
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
131 The default value of this variable is set up by `grep-compute-defaults';
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
132 call that function before using this variable in your program.
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
133 The following place holders should be present in the string:
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
134 <D> - base directory for find
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
135 <X> - find options to restrict or expand the directory list
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
136 <F> - find options to limit the files matched
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
137 <C> - place to put -i if case insensitive grep
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
138 <R> - the regular expression searched for."
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
139 :type '(choice string
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
140 (const :tag "Not Set" nil))
59996
aac0a33f5772 Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents: 59991
diff changeset
141 :version "22.1"
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
142 :group 'grep)
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
143
83780
d1d369daf8dd (grep-files-aliases): Add cc alias.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 83778
diff changeset
144 (defcustom grep-files-aliases
d1d369daf8dd (grep-files-aliases): Add cc alias.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 83778
diff changeset
145 '(("asm" . "*.[sS]")
d1d369daf8dd (grep-files-aliases): Add cc alias.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 83778
diff changeset
146 ("c" . "*.c")
d1d369daf8dd (grep-files-aliases): Add cc alias.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 83778
diff changeset
147 ("cc" . "*.cc")
d1d369daf8dd (grep-files-aliases): Add cc alias.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 83778
diff changeset
148 ("ch" . "*.[ch]")
d1d369daf8dd (grep-files-aliases): Add cc alias.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 83778
diff changeset
149 ("el" . "*.el")
d1d369daf8dd (grep-files-aliases): Add cc alias.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 83778
diff changeset
150 ("h" . "*.h")
d1d369daf8dd (grep-files-aliases): Add cc alias.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 83778
diff changeset
151 ("l" . "[Cc]hange[Ll]og*")
d1d369daf8dd (grep-files-aliases): Add cc alias.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 83778
diff changeset
152 ("m" . "[Mm]akefile*")
d1d369daf8dd (grep-files-aliases): Add cc alias.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 83778
diff changeset
153 ("tex" . "*.tex")
d1d369daf8dd (grep-files-aliases): Add cc alias.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 83778
diff changeset
154 ("texi" . "*.texi"))
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
155 "*Alist of aliases for the FILES argument to `lgrep' and `rgrep'."
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
156 :type 'alist
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
157 :group 'grep)
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
158
83778
309cf30d46f5 (grep-find-ignored-directories): Add
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 82421
diff changeset
159 (defcustom grep-find-ignored-directories
87523
fe5c2c0f8dcf * progmodes/grep.el (grep-find-ignored-directories): Initialize
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 87453
diff changeset
160 vc-directory-exclusion-list
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
161 "*List of names of sub-directories which `rgrep' shall not recurse into."
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
162 :type '(repeat string)
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
163 :group 'grep)
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
164
56226
bfe817c8d413 (grep-error-screen-columns): New variable.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 56155
diff changeset
165 (defcustom grep-error-screen-columns nil
bfe817c8d413 (grep-error-screen-columns): New variable.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 56155
diff changeset
166 "*If non-nil, column numbers in grep hits are screen columns.
bfe817c8d413 (grep-error-screen-columns): New variable.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 56155
diff changeset
167 See `compilation-error-screen-columns'"
bfe817c8d413 (grep-error-screen-columns): New variable.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 56155
diff changeset
168 :type '(choice (const :tag "Default" nil)
bfe817c8d413 (grep-error-screen-columns): New variable.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 56155
diff changeset
169 integer)
59996
aac0a33f5772 Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents: 59991
diff changeset
170 :version "22.1"
56226
bfe817c8d413 (grep-error-screen-columns): New variable.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 56155
diff changeset
171 :group 'grep)
bfe817c8d413 (grep-error-screen-columns): New variable.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 56155
diff changeset
172
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
173 ;;;###autoload
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
174 (defcustom grep-setup-hook nil
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
175 "List of hook functions run by `grep-process-setup' (see `run-hooks')."
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
176 :type 'hook
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
177 :group 'grep)
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
178
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
179 (defvar grep-mode-map
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
180 (let ((map (cons 'keymap compilation-minor-mode-map)))
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
181 (define-key map " " 'scroll-up)
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
182 (define-key map "\^?" 'scroll-down)
57022
463edf7390ca (grep-mode-map): Rename `next-error-follow-mode' to `next-error-follow-minor-mode'.
Juri Linkov <juri@jurta.org>
parents: 56998
diff changeset
183 (define-key map "\C-c\C-f" 'next-error-follow-minor-mode)
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
184
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
185 (define-key map "\r" 'compile-goto-error) ;; ?
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
186 (define-key map "n" 'next-error-no-select)
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
187 (define-key map "p" 'previous-error-no-select)
94566
c31e26fe0b1f * progmodes/compile.el (compilation-start): Move setting of
Sam Steingold <sds@gnu.org>
parents: 94141
diff changeset
188 (define-key map "g" 'recompile) ; revert
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
189 (define-key map "{" 'compilation-previous-file)
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
190 (define-key map "}" 'compilation-next-file)
64728
c1b77e79c51a (grep-mode-map): Bind TAB to `compilation-next-error'
Juri Linkov <juri@jurta.org>
parents: 64725
diff changeset
191 (define-key map "\t" 'compilation-next-error)
c1b77e79c51a (grep-mode-map): Bind TAB to `compilation-next-error'
Juri Linkov <juri@jurta.org>
parents: 64725
diff changeset
192 (define-key map [backtab] 'compilation-previous-error)
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
193
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
194 ;; Set up the menu-bar
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
195 (define-key map [menu-bar grep]
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
196 (cons "Grep" (make-sparse-keymap "Grep")))
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
197
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
198 (define-key map [menu-bar grep compilation-kill-compilation]
92493
402ee2cfca27 * bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 92230
diff changeset
199 '(menu-item "Kill Grep" kill-compilation
402ee2cfca27 * bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 92230
diff changeset
200 :help "Kill the currently running grep process"))
402ee2cfca27 * bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 92230
diff changeset
201 (define-key map [menu-bar grep compilation-separator2] '("----"))
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
202 (define-key map [menu-bar grep compilation-compile]
92493
402ee2cfca27 * bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 92230
diff changeset
203 '(menu-item "Compile..." compile
402ee2cfca27 * bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 92230
diff changeset
204 :help "Compile the program including the current buffer. Default: run `make'"))
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
205 (define-key map [menu-bar grep compilation-grep]
92493
402ee2cfca27 * bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 92230
diff changeset
206 '(menu-item "Another grep..." grep
402ee2cfca27 * bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 92230
diff changeset
207 :help "Run grep, with user-specified args, and collect output in a buffer."))
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
208 (define-key map [menu-bar grep compilation-grep-find]
92493
402ee2cfca27 * bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 92230
diff changeset
209 '(menu-item "Recursive grep..." grep-find
402ee2cfca27 * bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 92230
diff changeset
210 :help "Run grep via find, with user-specified args"))
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
211 (define-key map [menu-bar grep compilation-recompile]
92493
402ee2cfca27 * bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 92230
diff changeset
212 '(menu-item "Repeat grep" recompile
402ee2cfca27 * bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 92230
diff changeset
213 :help "Run grep again"))
402ee2cfca27 * bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 92230
diff changeset
214 (define-key map [menu-bar grep compilation-separator2] '("----"))
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
215 (define-key map [menu-bar grep compilation-first-error]
92493
402ee2cfca27 * bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 92230
diff changeset
216 '(menu-item "First Match" first-error
402ee2cfca27 * bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 92230
diff changeset
217 :help "Restart at the first match, visit corresponding location"))
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
218 (define-key map [menu-bar grep compilation-previous-error]
92493
402ee2cfca27 * bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 92230
diff changeset
219 '(menu-item "Previous Match" previous-error
402ee2cfca27 * bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 92230
diff changeset
220 :help "Visit the previous match and corresponding location"))
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
221 (define-key map [menu-bar grep compilation-next-error]
92493
402ee2cfca27 * bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 92230
diff changeset
222 '(menu-item "Next Match" next-error
402ee2cfca27 * bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 92230
diff changeset
223 :help "Visit the next match and corresponding location"))
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
224 map)
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
225 "Keymap for grep buffers.
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
226 `compilation-minor-mode-map' is a cdr of this.")
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
227
92204
ab425a596ec9 (grep-mode-tool-bar-map): New variable.
Jan Djärv <jan.h.d@swipnet.se>
parents: 88102
diff changeset
228 (defvar grep-mode-tool-bar-map
ab425a596ec9 (grep-mode-tool-bar-map): New variable.
Jan Djärv <jan.h.d@swipnet.se>
parents: 88102
diff changeset
229 (if (display-graphic-p)
ab425a596ec9 (grep-mode-tool-bar-map): New variable.
Jan Djärv <jan.h.d@swipnet.se>
parents: 88102
diff changeset
230 (let ((map (butlast (copy-keymap tool-bar-map)))
ab425a596ec9 (grep-mode-tool-bar-map): New variable.
Jan Djärv <jan.h.d@swipnet.se>
parents: 88102
diff changeset
231 (help (last tool-bar-map))) ;; Keep Help last in tool bar
94566
c31e26fe0b1f * progmodes/compile.el (compilation-start): Move setting of
Sam Steingold <sds@gnu.org>
parents: 94141
diff changeset
232 (tool-bar-local-item
92230
d9373da2792d (grep-mode-tool-bar-map): Change place on next
Jan Djärv <jan.h.d@swipnet.se>
parents: 92204
diff changeset
233 "left-arrow" 'previous-error-no-select 'previous-error-no-select map
d9373da2792d (grep-mode-tool-bar-map): Change place on next
Jan Djärv <jan.h.d@swipnet.se>
parents: 92204
diff changeset
234 :rtl "right-arrow"
d9373da2792d (grep-mode-tool-bar-map): Change place on next
Jan Djärv <jan.h.d@swipnet.se>
parents: 92204
diff changeset
235 :help "Goto previous match")
92204
ab425a596ec9 (grep-mode-tool-bar-map): New variable.
Jan Djärv <jan.h.d@swipnet.se>
parents: 88102
diff changeset
236 (tool-bar-local-item
ab425a596ec9 (grep-mode-tool-bar-map): New variable.
Jan Djärv <jan.h.d@swipnet.se>
parents: 88102
diff changeset
237 "right-arrow" 'next-error-no-select 'next-error-no-select map
ab425a596ec9 (grep-mode-tool-bar-map): New variable.
Jan Djärv <jan.h.d@swipnet.se>
parents: 88102
diff changeset
238 :rtl "left-arrow"
ab425a596ec9 (grep-mode-tool-bar-map): New variable.
Jan Djärv <jan.h.d@swipnet.se>
parents: 88102
diff changeset
239 :help "Goto next match")
94566
c31e26fe0b1f * progmodes/compile.el (compilation-start): Move setting of
Sam Steingold <sds@gnu.org>
parents: 94141
diff changeset
240 (tool-bar-local-item
92204
ab425a596ec9 (grep-mode-tool-bar-map): New variable.
Jan Djärv <jan.h.d@swipnet.se>
parents: 88102
diff changeset
241 "cancel" 'kill-compilation 'kill-compilation map
93335
36e2d4840e38 (grep-mode-tool-bar-map): The same.
Jan Djärv <jan.h.d@swipnet.se>
parents: 93114
diff changeset
242 :enable '(let ((buffer (compilation-find-buffer)))
36e2d4840e38 (grep-mode-tool-bar-map): The same.
Jan Djärv <jan.h.d@swipnet.se>
parents: 93114
diff changeset
243 (get-buffer-process buffer))
92204
ab425a596ec9 (grep-mode-tool-bar-map): New variable.
Jan Djärv <jan.h.d@swipnet.se>
parents: 88102
diff changeset
244 :help "Stop grep")
94566
c31e26fe0b1f * progmodes/compile.el (compilation-start): Move setting of
Sam Steingold <sds@gnu.org>
parents: 94141
diff changeset
245 (tool-bar-local-item
92204
ab425a596ec9 (grep-mode-tool-bar-map): New variable.
Jan Djärv <jan.h.d@swipnet.se>
parents: 88102
diff changeset
246 "refresh" 'recompile 'recompile map
ab425a596ec9 (grep-mode-tool-bar-map): New variable.
Jan Djärv <jan.h.d@swipnet.se>
parents: 88102
diff changeset
247 :help "Restart grep")
ab425a596ec9 (grep-mode-tool-bar-map): New variable.
Jan Djärv <jan.h.d@swipnet.se>
parents: 88102
diff changeset
248 (append map help))))
ab425a596ec9 (grep-mode-tool-bar-map): New variable.
Jan Djärv <jan.h.d@swipnet.se>
parents: 88102
diff changeset
249
54372
a4d3c17f991f (kill-grep): Move here from compile.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54012
diff changeset
250 (defalias 'kill-grep 'kill-compilation)
a4d3c17f991f (kill-grep): Move here from compile.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54012
diff changeset
251
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
252 ;;;; TODO --- refine this!!
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
253
94141
e93898d6903e Fix up comment convention.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93335
diff changeset
254 ;; (defcustom grep-use-compilation-buffer t
e93898d6903e Fix up comment convention.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93335
diff changeset
255 ;; "When non-nil, grep specific commands update `compilation-last-buffer'.
e93898d6903e Fix up comment convention.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93335
diff changeset
256 ;; This means that standard compile commands like \\[next-error] and \\[compile-goto-error]
e93898d6903e Fix up comment convention.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93335
diff changeset
257 ;; can be used to navigate between grep matches (the default).
e93898d6903e Fix up comment convention.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93335
diff changeset
258 ;; Otherwise, the grep specific commands like \\[grep-next-match] must
e93898d6903e Fix up comment convention.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93335
diff changeset
259 ;; be used to navigate between grep matches."
e93898d6903e Fix up comment convention.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93335
diff changeset
260 ;; :type 'boolean
e93898d6903e Fix up comment convention.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93335
diff changeset
261 ;; :group 'grep)
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
262
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
263 ;; override compilation-last-buffer
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
264 (defvar grep-last-buffer nil
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
265 "The most recent grep buffer.
71854
a4944423be59 (grep-last-buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 71422
diff changeset
266 A grep buffer becomes most recent when you select Grep mode in it.
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
267 Notice that using \\[next-error] or \\[compile-goto-error] modifies
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
268 `complation-last-buffer' rather than `grep-last-buffer'.")
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
269
56333
eb4bc9a65835 (grep-compute-defaults, grep-command)
Eli Zaretskii <eliz@gnu.org>
parents: 56226
diff changeset
270 ;;;###autoload
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
271 (defvar grep-regexp-alist
64864
c474b6f22449 (grep-regexp-alist): Use `.+?' instead of `[^:\n]+'.
Juri Linkov <juri@jurta.org>
parents: 64740
diff changeset
272 '(("^\\(.+?\\)\\(:[ \t]*\\)\\([0-9]+\\)\\2"
64725
0344b299e9e6 (grep-regexp-alist): Replace complex regexp
Juri Linkov <juri@jurta.org>
parents: 64699
diff changeset
273 1 3)
0344b299e9e6 (grep-regexp-alist): Replace complex regexp
Juri Linkov <juri@jurta.org>
parents: 64699
diff changeset
274 ;; Rule to match column numbers is commented out since no known grep
0344b299e9e6 (grep-regexp-alist): Replace complex regexp
Juri Linkov <juri@jurta.org>
parents: 64699
diff changeset
275 ;; produces them
64864
c474b6f22449 (grep-regexp-alist): Use `.+?' instead of `[^:\n]+'.
Juri Linkov <juri@jurta.org>
parents: 64740
diff changeset
276 ;; ("^\\(.+?\\)\\(:[ \t]*\\)\\([0-9]+\\)\\2\\(?:\\([0-9]+\\)\\(?:-\\([0-9]+\\)\\)?\\2\\)?"
64725
0344b299e9e6 (grep-regexp-alist): Replace complex regexp
Juri Linkov <juri@jurta.org>
parents: 64699
diff changeset
277 ;; 1 3 (4 . 5))
63576
7c3d537469b0 (grep-regexp-alist): Use backreference at the
Juri Linkov <juri@jurta.org>
parents: 62160
diff changeset
278 ("^\\(\\(.+?\\):\\([0-9]+\\):\\).*?\
64509
9a66028f1658 (grep-regexp-alist)
Juri Linkov <juri@jurta.org>
parents: 64085
diff changeset
279 \\(\033\\[01;31m\\(?:\033\\[K\\)?\\)\\(.*?\\)\\(\033\\[[0-9]*m\\)"
63576
7c3d537469b0 (grep-regexp-alist): Use backreference at the
Juri Linkov <juri@jurta.org>
parents: 62160
diff changeset
280 2 3
57769
e663f6b659a6 (grep-regexp-alist): Move match highlighting
Juri Linkov <juri@jurta.org>
parents: 57043
diff changeset
281 ;; Calculate column positions (beg . end) of first grep match on a line
56881
4be25baf31b5 (grep-highlight-matches): New defcustom.
Juri Linkov <juri@jurta.org>
parents: 56828
diff changeset
282 ((lambda ()
64509
9a66028f1658 (grep-regexp-alist)
Juri Linkov <juri@jurta.org>
parents: 64085
diff changeset
283 (setq compilation-error-screen-columns nil)
9a66028f1658 (grep-regexp-alist)
Juri Linkov <juri@jurta.org>
parents: 64085
diff changeset
284 (- (match-beginning 4) (match-end 1)))
56881
4be25baf31b5 (grep-highlight-matches): New defcustom.
Juri Linkov <juri@jurta.org>
parents: 56828
diff changeset
285 .
64509
9a66028f1658 (grep-regexp-alist)
Juri Linkov <juri@jurta.org>
parents: 64085
diff changeset
286 (lambda () (- (match-end 5) (match-end 1)
9a66028f1658 (grep-regexp-alist)
Juri Linkov <juri@jurta.org>
parents: 64085
diff changeset
287 (- (match-end 4) (match-beginning 4)))))
63576
7c3d537469b0 (grep-regexp-alist): Use backreference at the
Juri Linkov <juri@jurta.org>
parents: 62160
diff changeset
288 nil 1)
64740
eeed7a7c1afa (grep-regexp-alist): Set 5th arg `TYPE' to
Juri Linkov <juri@jurta.org>
parents: 64728
diff changeset
289 ("^Binary file \\(.+\\) matches$" 1 nil nil 0 1))
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
290 "Regexp used to match grep hits. See `compilation-error-regexp-alist'.")
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
291
54372
a4d3c17f991f (kill-grep): Move here from compile.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54012
diff changeset
292 (defvar grep-error "grep hit"
a4d3c17f991f (kill-grep): Move here from compile.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54012
diff changeset
293 "Message to print when no matches are found.")
a4d3c17f991f (kill-grep): Move here from compile.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54012
diff changeset
294
a4d3c17f991f (kill-grep): Move here from compile.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54012
diff changeset
295 ;; Reverse the colors because grep hits are not errors (though we jump there
a4d3c17f991f (kill-grep): Move here from compile.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54012
diff changeset
296 ;; with `next-error'), and unreadable files can't be gone to.
a4d3c17f991f (kill-grep): Move here from compile.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54012
diff changeset
297 (defvar grep-hit-face compilation-info-face
a4d3c17f991f (kill-grep): Move here from compile.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54012
diff changeset
298 "Face name to use for grep hits.")
a4d3c17f991f (kill-grep): Move here from compile.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54012
diff changeset
299
64864
c474b6f22449 (grep-regexp-alist): Use `.+?' instead of `[^:\n]+'.
Juri Linkov <juri@jurta.org>
parents: 64740
diff changeset
300 (defvar grep-error-face 'compilation-error
54372
a4d3c17f991f (kill-grep): Move here from compile.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54012
diff changeset
301 "Face name to use for grep error messages.")
a4d3c17f991f (kill-grep): Move here from compile.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54012
diff changeset
302
58988
067d5dcfe531 (grep-match-face): New defvar.
Juri Linkov <juri@jurta.org>
parents: 58493
diff changeset
303 (defvar grep-match-face 'match
067d5dcfe531 (grep-match-face): New defvar.
Juri Linkov <juri@jurta.org>
parents: 58493
diff changeset
304 "Face name to use for grep matches.")
067d5dcfe531 (grep-match-face): New defvar.
Juri Linkov <juri@jurta.org>
parents: 58493
diff changeset
305
64725
0344b299e9e6 (grep-regexp-alist): Replace complex regexp
Juri Linkov <juri@jurta.org>
parents: 64699
diff changeset
306 (defvar grep-context-face 'shadow
0344b299e9e6 (grep-regexp-alist): Replace complex regexp
Juri Linkov <juri@jurta.org>
parents: 64699
diff changeset
307 "Face name to use for grep context lines.")
0344b299e9e6 (grep-regexp-alist): Replace complex regexp
Juri Linkov <juri@jurta.org>
parents: 64699
diff changeset
308
54372
a4d3c17f991f (kill-grep): Move here from compile.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54012
diff changeset
309 (defvar grep-mode-font-lock-keywords
a4d3c17f991f (kill-grep): Move here from compile.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54012
diff changeset
310 '(;; Command output lines.
a4d3c17f991f (kill-grep): Move here from compile.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54012
diff changeset
311 ("^\\([A-Za-z_0-9/\.+-]+\\)[ \t]*:" 1 font-lock-function-name-face)
a4d3c17f991f (kill-grep): Move here from compile.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54012
diff changeset
312 (": \\(.+\\): \\(?:Permission denied\\|No such \\(?:file or directory\\|device or address\\)\\)$"
a4d3c17f991f (kill-grep): Move here from compile.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54012
diff changeset
313 1 grep-error-face)
a4d3c17f991f (kill-grep): Move here from compile.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54012
diff changeset
314 ;; remove match from grep-regexp-alist before fontifying
71422
2611669abf9e (grep-mode-font-lock-keywords): Correct regexps
Kim F. Storm <storm@cua.dk>
parents: 70712
diff changeset
315 ("^Grep[/a-zA-z]* started.*"
65126
559a37c2f306 (grep, grep-mode): Make buffer-local variables
Juri Linkov <juri@jurta.org>
parents: 65056
diff changeset
316 (0 '(face nil message nil help-echo nil mouse-face nil) t))
71422
2611669abf9e (grep-mode-font-lock-keywords): Correct regexps
Kim F. Storm <storm@cua.dk>
parents: 70712
diff changeset
317 ("^Grep[/a-zA-z]* finished \\(?:(\\(matches found\\))\\|with \\(no matches found\\)\\).*"
54372
a4d3c17f991f (kill-grep): Move here from compile.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54012
diff changeset
318 (0 '(face nil message nil help-echo nil mouse-face nil) t)
64864
c474b6f22449 (grep-regexp-alist): Use `.+?' instead of `[^:\n]+'.
Juri Linkov <juri@jurta.org>
parents: 64740
diff changeset
319 (1 compilation-info-face nil t)
c474b6f22449 (grep-regexp-alist): Use `.+?' instead of `[^:\n]+'.
Juri Linkov <juri@jurta.org>
parents: 64740
diff changeset
320 (2 compilation-warning-face nil t))
71422
2611669abf9e (grep-mode-font-lock-keywords): Correct regexps
Kim F. Storm <storm@cua.dk>
parents: 70712
diff changeset
321 ("^Grep[/a-zA-z]* \\(exited abnormally\\|interrupt\\|killed\\|terminated\\)\\(?:.*with code \\([0-9]+\\)\\)?.*"
54372
a4d3c17f991f (kill-grep): Move here from compile.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54012
diff changeset
322 (0 '(face nil message nil help-echo nil mouse-face nil) t)
64864
c474b6f22449 (grep-regexp-alist): Use `.+?' instead of `[^:\n]+'.
Juri Linkov <juri@jurta.org>
parents: 64740
diff changeset
323 (1 grep-error-face)
64944
c845f6151d83 (grep-mode-map): Add ellipsis to "Another grep".
Juri Linkov <juri@jurta.org>
parents: 64864
diff changeset
324 (2 grep-error-face nil t))
64864
c474b6f22449 (grep-regexp-alist): Use `.+?' instead of `[^:\n]+'.
Juri Linkov <juri@jurta.org>
parents: 64740
diff changeset
325 ("^.+?-[0-9]+-.*\n" (0 grep-context-face))
57769
e663f6b659a6 (grep-regexp-alist): Move match highlighting
Juri Linkov <juri@jurta.org>
parents: 57043
diff changeset
326 ;; Highlight grep matches and delete markers
64509
9a66028f1658 (grep-regexp-alist)
Juri Linkov <juri@jurta.org>
parents: 64085
diff changeset
327 ("\\(\033\\[01;31m\\)\\(.*?\\)\\(\033\\[[0-9]*m\\)"
61902
e8076329ceee (grep-mode-font-lock-keywords): Use the font-lock-face property to
Lute Kamstra <lute@gnu.org>
parents: 59996
diff changeset
328 ;; Refontification does not work after the markers have been
e8076329ceee (grep-mode-font-lock-keywords): Use the font-lock-face property to
Lute Kamstra <lute@gnu.org>
parents: 59996
diff changeset
329 ;; deleted. So we use the font-lock-face property here as Font
e8076329ceee (grep-mode-font-lock-keywords): Use the font-lock-face property to
Lute Kamstra <lute@gnu.org>
parents: 59996
diff changeset
330 ;; Lock does not clear that.
e8076329ceee (grep-mode-font-lock-keywords): Use the font-lock-face property to
Lute Kamstra <lute@gnu.org>
parents: 59996
diff changeset
331 (2 (list 'face nil 'font-lock-face grep-match-face))
64509
9a66028f1658 (grep-regexp-alist)
Juri Linkov <juri@jurta.org>
parents: 64085
diff changeset
332 ((lambda (bound))
57769
e663f6b659a6 (grep-regexp-alist): Move match highlighting
Juri Linkov <juri@jurta.org>
parents: 57043
diff changeset
333 (progn
e663f6b659a6 (grep-regexp-alist): Move match highlighting
Juri Linkov <juri@jurta.org>
parents: 57043
diff changeset
334 ;; Delete markers with `replace-match' because it updates
e663f6b659a6 (grep-regexp-alist): Move match highlighting
Juri Linkov <juri@jurta.org>
parents: 57043
diff changeset
335 ;; the match-data, whereas `delete-region' would render it obsolete.
e663f6b659a6 (grep-regexp-alist): Move match highlighting
Juri Linkov <juri@jurta.org>
parents: 57043
diff changeset
336 (replace-match "" t t nil 3)
64509
9a66028f1658 (grep-regexp-alist)
Juri Linkov <juri@jurta.org>
parents: 64085
diff changeset
337 (replace-match "" t t nil 1))))
9a66028f1658 (grep-regexp-alist)
Juri Linkov <juri@jurta.org>
parents: 64085
diff changeset
338 ("\\(\033\\[[0-9;]*[mK]\\)"
9a66028f1658 (grep-regexp-alist)
Juri Linkov <juri@jurta.org>
parents: 64085
diff changeset
339 ;; Delete all remaining escape sequences
9a66028f1658 (grep-regexp-alist)
Juri Linkov <juri@jurta.org>
parents: 64085
diff changeset
340 ((lambda (bound))
9a66028f1658 (grep-regexp-alist)
Juri Linkov <juri@jurta.org>
parents: 64085
diff changeset
341 (replace-match "" t t nil 1))))
54372
a4d3c17f991f (kill-grep): Move here from compile.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54012
diff changeset
342 "Additional things to highlight in grep output.
a4d3c17f991f (kill-grep): Move here from compile.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54012
diff changeset
343 This gets tacked on the end of the generated expressions.")
a4d3c17f991f (kill-grep): Move here from compile.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54012
diff changeset
344
56333
eb4bc9a65835 (grep-compute-defaults, grep-command)
Eli Zaretskii <eliz@gnu.org>
parents: 56226
diff changeset
345 ;;;###autoload
76966
e1190fd4a1f2 (grep-program): Remove commentary about zgrep.
Kim F. Storm <storm@cua.dk>
parents: 76455
diff changeset
346 (defvar grep-program "grep"
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
347 "The default grep program for `grep-command' and `grep-find-command'.
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
348 This variable's value takes effect when `grep-compute-defaults' is called.")
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
349
56333
eb4bc9a65835 (grep-compute-defaults, grep-command)
Eli Zaretskii <eliz@gnu.org>
parents: 56226
diff changeset
350 ;;;###autoload
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
351 (defvar find-program "find"
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
352 "The default find program for `grep-find-command'.
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
353 This variable's value takes effect when `grep-compute-defaults' is called.")
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
354
56333
eb4bc9a65835 (grep-compute-defaults, grep-command)
Eli Zaretskii <eliz@gnu.org>
parents: 56226
diff changeset
355 ;;;###autoload
86249
ef17406635fe (xargs-program): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 83780
diff changeset
356 (defvar xargs-program "xargs"
ef17406635fe (xargs-program): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 83780
diff changeset
357 "The default xargs program for `grep-find-command'.
ef17406635fe (xargs-program): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 83780
diff changeset
358 See `grep-find-use-xargs'.
ef17406635fe (xargs-program): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 83780
diff changeset
359 This variable's value takes effect when `grep-compute-defaults' is called.")
ef17406635fe (xargs-program): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 83780
diff changeset
360
ef17406635fe (xargs-program): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 83780
diff changeset
361 ;;;###autoload
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
362 (defvar grep-find-use-xargs nil
77033
25b4502cd0b4 (grep-find-use-xargs): Rewrite docstring.
Chong Yidong <cyd@stupidchicken.com>
parents: 76966
diff changeset
363 "Non-nil means that `grep-find' uses the `xargs' utility by default.
25b4502cd0b4 (grep-find-use-xargs): Rewrite docstring.
Chong Yidong <cyd@stupidchicken.com>
parents: 76966
diff changeset
364 If `exec', use `find -exec'.
25b4502cd0b4 (grep-find-use-xargs): Rewrite docstring.
Chong Yidong <cyd@stupidchicken.com>
parents: 76966
diff changeset
365 If `gnu', use `find -print0' and `xargs -0'.
25b4502cd0b4 (grep-find-use-xargs): Rewrite docstring.
Chong Yidong <cyd@stupidchicken.com>
parents: 76966
diff changeset
366 Any other non-nil value means to use `find -print' and `xargs'.
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
367
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
368 This variable's value takes effect when `grep-compute-defaults' is called.")
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
369
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
370 ;; History of grep commands.
56333
eb4bc9a65835 (grep-compute-defaults, grep-command)
Eli Zaretskii <eliz@gnu.org>
parents: 56226
diff changeset
371 ;;;###autoload
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
372 (defvar grep-history nil)
56333
eb4bc9a65835 (grep-compute-defaults, grep-command)
Eli Zaretskii <eliz@gnu.org>
parents: 56226
diff changeset
373 ;;;###autoload
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
374 (defvar grep-find-history nil)
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
375
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
376 ;; History of lgrep and rgrep regexp and files args.
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
377 (defvar grep-regexp-history nil)
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
378 (defvar grep-files-history '("ch" "el"))
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
379
81972
7447c9b7efeb * progmodes/grep.el (grep-host-defaults-alist): New defvar.
Michael Albinus <michael.albinus@gmx.de>
parents: 81936
diff changeset
380 (defvar grep-host-defaults-alist nil
7447c9b7efeb * progmodes/grep.el (grep-host-defaults-alist): New defvar.
Michael Albinus <michael.albinus@gmx.de>
parents: 81936
diff changeset
381 "Default values depending on target host.
7447c9b7efeb * progmodes/grep.el (grep-host-defaults-alist): New defvar.
Michael Albinus <michael.albinus@gmx.de>
parents: 81936
diff changeset
382 `grep-compute-defaults' returns default values for every local or
7447c9b7efeb * progmodes/grep.el (grep-host-defaults-alist): New defvar.
Michael Albinus <michael.albinus@gmx.de>
parents: 81936
diff changeset
383 remote host `grep' runs. These values can differ from host to
7447c9b7efeb * progmodes/grep.el (grep-host-defaults-alist): New defvar.
Michael Albinus <michael.albinus@gmx.de>
parents: 81936
diff changeset
384 host. Once computed, the default values are kept here in order
7447c9b7efeb * progmodes/grep.el (grep-host-defaults-alist): New defvar.
Michael Albinus <michael.albinus@gmx.de>
parents: 81936
diff changeset
385 to avoid computing them again.")
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
386
56333
eb4bc9a65835 (grep-compute-defaults, grep-command)
Eli Zaretskii <eliz@gnu.org>
parents: 56226
diff changeset
387 ;;;###autoload
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
388 (defun grep-process-setup ()
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
389 "Setup compilation variables and buffer for `grep'.
54372
a4d3c17f991f (kill-grep): Move here from compile.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54012
diff changeset
390 Set up `compilation-exit-message-function' and run `grep-setup-hook'."
56960
84482ed458f2 (grep-highlight-matches): Doc fix.
Juri Linkov <juri@jurta.org>
parents: 56948
diff changeset
391 (unless (or (not grep-highlight-matches) (eq grep-highlight-matches t))
84482ed458f2 (grep-highlight-matches): Doc fix.
Juri Linkov <juri@jurta.org>
parents: 56948
diff changeset
392 (grep-compute-defaults))
84482ed458f2 (grep-highlight-matches): Doc fix.
Juri Linkov <juri@jurta.org>
parents: 56948
diff changeset
393 (when (eq grep-highlight-matches t)
86354
29047758dd89 (grep-process-setup): Set envvar "TERM" to "emacs-grep".
Juri Linkov <juri@jurta.org>
parents: 86249
diff changeset
394 ;; `setenv' modifies `process-environment' let-bound in `compilation-start'
29047758dd89 (grep-process-setup): Set envvar "TERM" to "emacs-grep".
Juri Linkov <juri@jurta.org>
parents: 86249
diff changeset
395 ;; Any TERM except "dumb" allows GNU grep to use `--color=auto'
29047758dd89 (grep-process-setup): Set envvar "TERM" to "emacs-grep".
Juri Linkov <juri@jurta.org>
parents: 86249
diff changeset
396 (setenv "TERM" "emacs-grep")
29047758dd89 (grep-process-setup): Set envvar "TERM" to "emacs-grep".
Juri Linkov <juri@jurta.org>
parents: 86249
diff changeset
397 ;; `--color=auto' emits escape sequences on a tty rather than on a pipe,
29047758dd89 (grep-process-setup): Set envvar "TERM" to "emacs-grep".
Juri Linkov <juri@jurta.org>
parents: 86249
diff changeset
398 ;; thus allowing to use multiple grep filters on the command line
29047758dd89 (grep-process-setup): Set envvar "TERM" to "emacs-grep".
Juri Linkov <juri@jurta.org>
parents: 86249
diff changeset
399 ;; and to output escape sequences only on the final grep output
29047758dd89 (grep-process-setup): Set envvar "TERM" to "emacs-grep".
Juri Linkov <juri@jurta.org>
parents: 86249
diff changeset
400 (setenv "GREP_OPTIONS" (concat (getenv "GREP_OPTIONS") " --color=auto"))
29047758dd89 (grep-process-setup): Set envvar "TERM" to "emacs-grep".
Juri Linkov <juri@jurta.org>
parents: 86249
diff changeset
401 ;; GREP_COLOR is used in GNU grep 2.5.1, but deprecated in later versions
64509
9a66028f1658 (grep-regexp-alist)
Juri Linkov <juri@jurta.org>
parents: 64085
diff changeset
402 (setenv "GREP_COLOR" "01;31")
86354
29047758dd89 (grep-process-setup): Set envvar "TERM" to "emacs-grep".
Juri Linkov <juri@jurta.org>
parents: 86249
diff changeset
403 ;; GREP_COLORS is used in GNU grep 2.5.2 and later versions
64509
9a66028f1658 (grep-regexp-alist)
Juri Linkov <juri@jurta.org>
parents: 64085
diff changeset
404 (setenv "GREP_COLORS" "mt=01;31:fn=:ln=:bn=:se=:ml=:cx=:ne"))
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
405 (set (make-local-variable 'compilation-exit-message-function)
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
406 (lambda (status code msg)
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
407 (if (eq status 'exit)
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
408 (cond ((zerop code)
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
409 '("finished (matches found)\n" . "matched"))
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
410 ((= code 1)
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
411 '("finished with no matches found\n" . "no match"))
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
412 (t
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
413 (cons msg code)))
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
414 (cons msg code))))
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
415 (run-hooks 'grep-setup-hook))
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
416
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
417 (defun grep-probe (command args &optional func result)
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
418 (equal (condition-case nil
81936
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
419 (apply (or func 'process-file) command args)
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
420 (error nil))
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
421 (or result 0)))
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
422
56333
eb4bc9a65835 (grep-compute-defaults, grep-command)
Eli Zaretskii <eliz@gnu.org>
parents: 56226
diff changeset
423 ;;;###autoload
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
424 (defun grep-compute-defaults ()
82031
73ba7647c960 * progmodes/grep.el (grep-compute-defaults): Keep default values.
Michael Albinus <michael.albinus@gmx.de>
parents: 81972
diff changeset
425 ;; Keep default values.
73ba7647c960 * progmodes/grep.el (grep-compute-defaults): Keep default values.
Michael Albinus <michael.albinus@gmx.de>
parents: 81972
diff changeset
426 (unless grep-host-defaults-alist
73ba7647c960 * progmodes/grep.el (grep-compute-defaults): Keep default values.
Michael Albinus <michael.albinus@gmx.de>
parents: 81972
diff changeset
427 (add-to-list
73ba7647c960 * progmodes/grep.el (grep-compute-defaults): Keep default values.
Michael Albinus <michael.albinus@gmx.de>
parents: 81972
diff changeset
428 'grep-host-defaults-alist
73ba7647c960 * progmodes/grep.el (grep-compute-defaults): Keep default values.
Michael Albinus <michael.albinus@gmx.de>
parents: 81972
diff changeset
429 (cons nil
73ba7647c960 * progmodes/grep.el (grep-compute-defaults): Keep default values.
Michael Albinus <michael.albinus@gmx.de>
parents: 81972
diff changeset
430 `((grep-command ,grep-command)
73ba7647c960 * progmodes/grep.el (grep-compute-defaults): Keep default values.
Michael Albinus <michael.albinus@gmx.de>
parents: 81972
diff changeset
431 (grep-template ,grep-template)
73ba7647c960 * progmodes/grep.el (grep-compute-defaults): Keep default values.
Michael Albinus <michael.albinus@gmx.de>
parents: 81972
diff changeset
432 (grep-use-null-device ,grep-use-null-device)
73ba7647c960 * progmodes/grep.el (grep-compute-defaults): Keep default values.
Michael Albinus <michael.albinus@gmx.de>
parents: 81972
diff changeset
433 (grep-find-command ,grep-find-command)
73ba7647c960 * progmodes/grep.el (grep-compute-defaults): Keep default values.
Michael Albinus <michael.albinus@gmx.de>
parents: 81972
diff changeset
434 (grep-find-template ,grep-find-template)
73ba7647c960 * progmodes/grep.el (grep-compute-defaults): Keep default values.
Michael Albinus <michael.albinus@gmx.de>
parents: 81972
diff changeset
435 (grep-find-use-xargs ,grep-find-use-xargs)
73ba7647c960 * progmodes/grep.el (grep-compute-defaults): Keep default values.
Michael Albinus <michael.albinus@gmx.de>
parents: 81972
diff changeset
436 (grep-highlight-matches ,grep-highlight-matches)))))
73ba7647c960 * progmodes/grep.el (grep-compute-defaults): Keep default values.
Michael Albinus <michael.albinus@gmx.de>
parents: 81972
diff changeset
437 (let* ((host-id
88102
0fa30755c209 (grep-compute-defaults):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 87560
diff changeset
438 (intern (or (file-remote-p default-directory) "localhost")))
82031
73ba7647c960 * progmodes/grep.el (grep-compute-defaults): Keep default values.
Michael Albinus <michael.albinus@gmx.de>
parents: 81972
diff changeset
439 (host-defaults (assq host-id grep-host-defaults-alist))
73ba7647c960 * progmodes/grep.el (grep-compute-defaults): Keep default values.
Michael Albinus <michael.albinus@gmx.de>
parents: 81972
diff changeset
440 (defaults (assq nil grep-host-defaults-alist)))
81936
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
441 ;; There are different defaults on different hosts. They must be
82031
73ba7647c960 * progmodes/grep.el (grep-compute-defaults): Keep default values.
Michael Albinus <michael.albinus@gmx.de>
parents: 81972
diff changeset
442 ;; computed for every host once.
81936
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
443 (setq grep-command
82031
73ba7647c960 * progmodes/grep.el (grep-compute-defaults): Keep default values.
Michael Albinus <michael.albinus@gmx.de>
parents: 81972
diff changeset
444 (or (cadr (assq 'grep-command host-defaults))
73ba7647c960 * progmodes/grep.el (grep-compute-defaults): Keep default values.
Michael Albinus <michael.albinus@gmx.de>
parents: 81972
diff changeset
445 (cadr (assq 'grep-command defaults)))
81936
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
446
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
447 grep-template
82031
73ba7647c960 * progmodes/grep.el (grep-compute-defaults): Keep default values.
Michael Albinus <michael.albinus@gmx.de>
parents: 81972
diff changeset
448 (or (cadr (assq 'grep-template host-defaults))
73ba7647c960 * progmodes/grep.el (grep-compute-defaults): Keep default values.
Michael Albinus <michael.albinus@gmx.de>
parents: 81972
diff changeset
449 (cadr (assq 'grep-template defaults)))
81936
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
450
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
451 grep-use-null-device
82031
73ba7647c960 * progmodes/grep.el (grep-compute-defaults): Keep default values.
Michael Albinus <michael.albinus@gmx.de>
parents: 81972
diff changeset
452 (or (cadr (assq 'grep-use-null-device host-defaults))
73ba7647c960 * progmodes/grep.el (grep-compute-defaults): Keep default values.
Michael Albinus <michael.albinus@gmx.de>
parents: 81972
diff changeset
453 (cadr (assq 'grep-use-null-device defaults)))
81936
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
454
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
455 grep-find-command
82031
73ba7647c960 * progmodes/grep.el (grep-compute-defaults): Keep default values.
Michael Albinus <michael.albinus@gmx.de>
parents: 81972
diff changeset
456 (or (cadr (assq 'grep-find-command host-defaults))
73ba7647c960 * progmodes/grep.el (grep-compute-defaults): Keep default values.
Michael Albinus <michael.albinus@gmx.de>
parents: 81972
diff changeset
457 (cadr (assq 'grep-find-command defaults)))
81936
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
458
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
459 grep-find-template
82031
73ba7647c960 * progmodes/grep.el (grep-compute-defaults): Keep default values.
Michael Albinus <michael.albinus@gmx.de>
parents: 81972
diff changeset
460 (or (cadr (assq 'grep-find-template host-defaults))
73ba7647c960 * progmodes/grep.el (grep-compute-defaults): Keep default values.
Michael Albinus <michael.albinus@gmx.de>
parents: 81972
diff changeset
461 (cadr (assq 'grep-find-template defaults)))
81936
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
462
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
463 grep-find-use-xargs
82031
73ba7647c960 * progmodes/grep.el (grep-compute-defaults): Keep default values.
Michael Albinus <michael.albinus@gmx.de>
parents: 81972
diff changeset
464 (or (cadr (assq 'grep-find-use-xargs host-defaults))
73ba7647c960 * progmodes/grep.el (grep-compute-defaults): Keep default values.
Michael Albinus <michael.albinus@gmx.de>
parents: 81972
diff changeset
465 (cadr (assq 'grep-find-use-xargs defaults)))
81936
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
466
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
467 grep-highlight-matches
82031
73ba7647c960 * progmodes/grep.el (grep-compute-defaults): Keep default values.
Michael Albinus <michael.albinus@gmx.de>
parents: 81972
diff changeset
468 (or (cadr (assq 'grep-highlight-matches host-defaults))
73ba7647c960 * progmodes/grep.el (grep-compute-defaults): Keep default values.
Michael Albinus <michael.albinus@gmx.de>
parents: 81972
diff changeset
469 (cadr (assq 'grep-highlight-matches defaults))))
81936
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
470
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
471 (unless (or (not grep-use-null-device) (eq grep-use-null-device t))
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
472 (setq grep-use-null-device
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
473 (with-temp-buffer
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
474 (let ((hello-file (expand-file-name "HELLO" data-directory)))
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
475 (not
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
476 (and (if grep-command
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
477 ;; `grep-command' is already set, so
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
478 ;; use that for testing.
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
479 (grep-probe grep-command
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
480 `(nil t nil "^English" ,hello-file)
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
481 #'call-process-shell-command)
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
482 ;; otherwise use `grep-program'
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
483 (grep-probe grep-program
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
484 `(nil t nil "-nH" "^English" ,hello-file)))
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
485 (progn
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
486 (goto-char (point-min))
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
487 (looking-at
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
488 (concat (regexp-quote hello-file)
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
489 ":[0-9]+:English")))))))))
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
490 (unless (and grep-command grep-find-command
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
491 grep-template grep-find-template)
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
492 (let ((grep-options
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
493 (concat (if grep-use-null-device "-n" "-nH")
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
494 (if (grep-probe grep-program
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
495 `(nil nil nil "-e" "foo" ,null-device)
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
496 nil 1)
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
497 " -e"))))
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
498 (unless grep-command
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
499 (setq grep-command
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
500 (format "%s %s " grep-program grep-options)))
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
501 (unless grep-template
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
502 (setq grep-template
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
503 (format "%s <C> %s <R> <F>" grep-program grep-options)))
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
504 (unless grep-find-use-xargs
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
505 (setq grep-find-use-xargs
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
506 (cond
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
507 ((and
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
508 (grep-probe find-program `(nil nil nil ,null-device "-print0"))
86249
ef17406635fe (xargs-program): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 83780
diff changeset
509 (grep-probe xargs-program `(nil nil nil "-0" "-e" "echo")))
81936
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
510 'gnu)
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
511 (t
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
512 'exec))))
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
513 (unless grep-find-command
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
514 (setq grep-find-command
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
515 (cond ((eq grep-find-use-xargs 'gnu)
86249
ef17406635fe (xargs-program): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 83780
diff changeset
516 (format "%s . -type f -print0 | %s -0 -e %s"
ef17406635fe (xargs-program): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 83780
diff changeset
517 find-program xargs-program grep-command))
72500
35e43fe3d8ef (grep-find-use-xargs): Use explicit value `exec'
Kim F. Storm <storm@cua.dk>
parents: 72173
diff changeset
518 ((eq grep-find-use-xargs 'exec)
81936
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
519 (let ((cmd0 (format "%s . -type f -exec %s"
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
520 find-program grep-command)))
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
521 (cons
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
522 (format "%s {} %s %s"
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
523 cmd0 null-device
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
524 (shell-quote-argument ";"))
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
525 (1+ (length cmd0)))))
72500
35e43fe3d8ef (grep-find-use-xargs): Use explicit value `exec'
Kim F. Storm <storm@cua.dk>
parents: 72173
diff changeset
526 (t
86249
ef17406635fe (xargs-program): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 83780
diff changeset
527 (format "%s . -type f -print | %s %s"
ef17406635fe (xargs-program): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 83780
diff changeset
528 find-program xargs-program grep-command)))))
81936
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
529 (unless grep-find-template
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
530 (setq grep-find-template
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
531 (let ((gcmd (format "%s <C> %s <R>"
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
532 grep-program grep-options)))
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
533 (cond ((eq grep-find-use-xargs 'gnu)
86249
ef17406635fe (xargs-program): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 83780
diff changeset
534 (format "%s . <X> -type f <F> -print0 | %s -0 -e %s"
ef17406635fe (xargs-program): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 83780
diff changeset
535 find-program xargs-program gcmd))
81936
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
536 ((eq grep-find-use-xargs 'exec)
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
537 (format "%s . <X> -type f <F> -exec %s {} %s %s"
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
538 find-program gcmd null-device
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
539 (shell-quote-argument ";")))
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
540 (t
86249
ef17406635fe (xargs-program): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 83780
diff changeset
541 (format "%s . <X> -type f <F> -print | %s %s"
ef17406635fe (xargs-program): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 83780
diff changeset
542 find-program xargs-program gcmd))))))))
81936
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
543 (unless (or (not grep-highlight-matches) (eq grep-highlight-matches t))
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
544 (setq grep-highlight-matches
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
545 (with-temp-buffer
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
546 (and (grep-probe grep-program '(nil t nil "--help"))
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
547 (progn
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
548 (goto-char (point-min))
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
549 (search-forward "--color" nil t))
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
550 t))))
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
551
64c6efb87c40 * progmodes/grep.el (grep-probe): Use `process-file'.
Michael Albinus <michael.albinus@gmx.de>
parents: 77033
diff changeset
552 ;; Save defaults for this host.
81972
7447c9b7efeb * progmodes/grep.el (grep-host-defaults-alist): New defvar.
Michael Albinus <michael.albinus@gmx.de>
parents: 81936
diff changeset
553 (setq grep-host-defaults-alist
7447c9b7efeb * progmodes/grep.el (grep-host-defaults-alist): New defvar.
Michael Albinus <michael.albinus@gmx.de>
parents: 81936
diff changeset
554 (delete (assq host-id grep-host-defaults-alist)
7447c9b7efeb * progmodes/grep.el (grep-host-defaults-alist): New defvar.
Michael Albinus <michael.albinus@gmx.de>
parents: 81936
diff changeset
555 grep-host-defaults-alist))
7447c9b7efeb * progmodes/grep.el (grep-host-defaults-alist): New defvar.
Michael Albinus <michael.albinus@gmx.de>
parents: 81936
diff changeset
556 (add-to-list
7447c9b7efeb * progmodes/grep.el (grep-host-defaults-alist): New defvar.
Michael Albinus <michael.albinus@gmx.de>
parents: 81936
diff changeset
557 'grep-host-defaults-alist
7447c9b7efeb * progmodes/grep.el (grep-host-defaults-alist): New defvar.
Michael Albinus <michael.albinus@gmx.de>
parents: 81936
diff changeset
558 (cons host-id
7447c9b7efeb * progmodes/grep.el (grep-host-defaults-alist): New defvar.
Michael Albinus <michael.albinus@gmx.de>
parents: 81936
diff changeset
559 `((grep-command ,grep-command)
7447c9b7efeb * progmodes/grep.el (grep-host-defaults-alist): New defvar.
Michael Albinus <michael.albinus@gmx.de>
parents: 81936
diff changeset
560 (grep-template ,grep-template)
7447c9b7efeb * progmodes/grep.el (grep-host-defaults-alist): New defvar.
Michael Albinus <michael.albinus@gmx.de>
parents: 81936
diff changeset
561 (grep-use-null-device ,grep-use-null-device)
7447c9b7efeb * progmodes/grep.el (grep-host-defaults-alist): New defvar.
Michael Albinus <michael.albinus@gmx.de>
parents: 81936
diff changeset
562 (grep-find-command ,grep-find-command)
7447c9b7efeb * progmodes/grep.el (grep-host-defaults-alist): New defvar.
Michael Albinus <michael.albinus@gmx.de>
parents: 81936
diff changeset
563 (grep-find-template ,grep-find-template)
7447c9b7efeb * progmodes/grep.el (grep-host-defaults-alist): New defvar.
Michael Albinus <michael.albinus@gmx.de>
parents: 81936
diff changeset
564 (grep-find-use-xargs ,grep-find-use-xargs)
7447c9b7efeb * progmodes/grep.el (grep-host-defaults-alist): New defvar.
Michael Albinus <michael.albinus@gmx.de>
parents: 81936
diff changeset
565 (grep-highlight-matches ,grep-highlight-matches))))))
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
566
72163
bca9d3121eef (grep-tag-default): New function.
Kim F. Storm <storm@cua.dk>
parents: 72024
diff changeset
567 (defun grep-tag-default ()
bca9d3121eef (grep-tag-default): New function.
Kim F. Storm <storm@cua.dk>
parents: 72024
diff changeset
568 (or (and transient-mark-mode mark-active
bca9d3121eef (grep-tag-default): New function.
Kim F. Storm <storm@cua.dk>
parents: 72024
diff changeset
569 (/= (point) (mark))
bca9d3121eef (grep-tag-default): New function.
Kim F. Storm <storm@cua.dk>
parents: 72024
diff changeset
570 (buffer-substring-no-properties (point) (mark)))
bca9d3121eef (grep-tag-default): New function.
Kim F. Storm <storm@cua.dk>
parents: 72024
diff changeset
571 (funcall (or find-tag-default-function
bca9d3121eef (grep-tag-default): New function.
Kim F. Storm <storm@cua.dk>
parents: 72024
diff changeset
572 (get major-mode 'find-tag-default-function)
bca9d3121eef (grep-tag-default): New function.
Kim F. Storm <storm@cua.dk>
parents: 72024
diff changeset
573 'find-tag-default))
bca9d3121eef (grep-tag-default): New function.
Kim F. Storm <storm@cua.dk>
parents: 72024
diff changeset
574 ""))
bca9d3121eef (grep-tag-default): New function.
Kim F. Storm <storm@cua.dk>
parents: 72024
diff changeset
575
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
576 (defun grep-default-command ()
86249
ef17406635fe (xargs-program): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 83780
diff changeset
577 "Compute the default grep command for \\[universal-argument] \\[grep] to offer."
72163
bca9d3121eef (grep-tag-default): New function.
Kim F. Storm <storm@cua.dk>
parents: 72024
diff changeset
578 (let ((tag-default (shell-quote-argument (grep-tag-default)))
72173
691a901b4418 (grep-default-command): Catch errors from wildcard-to-regexp.
Richard M. Stallman <rms@gnu.org>
parents: 72165
diff changeset
579 ;; This a regexp to match single shell arguments.
691a901b4418 (grep-default-command): Catch errors from wildcard-to-regexp.
Richard M. Stallman <rms@gnu.org>
parents: 72165
diff changeset
580 ;; Could someone please add comments explaining it?
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
581 (sh-arg-re "\\(\\(?:\"\\(?:[^\"]\\|\\\\\"\\)+\"\\|'[^']+'\\|[^\"' \t\n]\\)+\\)")
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
582 (grep-default (or (car grep-history) grep-command)))
72173
691a901b4418 (grep-default-command): Catch errors from wildcard-to-regexp.
Richard M. Stallman <rms@gnu.org>
parents: 72165
diff changeset
583 ;; In the default command, find the arg that specifies the pattern.
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
584 (when (or (string-match
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
585 (concat "[^ ]+\\s +\\(?:-[^ ]+\\s +\\)*"
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
586 sh-arg-re "\\(\\s +\\(\\S +\\)\\)?")
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
587 grep-default)
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
588 ;; If the string is not yet complete.
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
589 (string-match "\\(\\)\\'" grep-default))
72173
691a901b4418 (grep-default-command): Catch errors from wildcard-to-regexp.
Richard M. Stallman <rms@gnu.org>
parents: 72165
diff changeset
590 ;; Maybe we will replace the pattern with the default tag.
691a901b4418 (grep-default-command): Catch errors from wildcard-to-regexp.
Richard M. Stallman <rms@gnu.org>
parents: 72165
diff changeset
591 ;; But first, maybe replace the file name pattern.
691a901b4418 (grep-default-command): Catch errors from wildcard-to-regexp.
Richard M. Stallman <rms@gnu.org>
parents: 72165
diff changeset
592 (condition-case nil
691a901b4418 (grep-default-command): Catch errors from wildcard-to-regexp.
Richard M. Stallman <rms@gnu.org>
parents: 72165
diff changeset
593 (unless (or (not (stringp buffer-file-name))
691a901b4418 (grep-default-command): Catch errors from wildcard-to-regexp.
Richard M. Stallman <rms@gnu.org>
parents: 72165
diff changeset
594 (when (match-beginning 2)
691a901b4418 (grep-default-command): Catch errors from wildcard-to-regexp.
Richard M. Stallman <rms@gnu.org>
parents: 72165
diff changeset
595 (save-match-data
691a901b4418 (grep-default-command): Catch errors from wildcard-to-regexp.
Richard M. Stallman <rms@gnu.org>
parents: 72165
diff changeset
596 (string-match
691a901b4418 (grep-default-command): Catch errors from wildcard-to-regexp.
Richard M. Stallman <rms@gnu.org>
parents: 72165
diff changeset
597 (wildcard-to-regexp
691a901b4418 (grep-default-command): Catch errors from wildcard-to-regexp.
Richard M. Stallman <rms@gnu.org>
parents: 72165
diff changeset
598 (file-name-nondirectory
691a901b4418 (grep-default-command): Catch errors from wildcard-to-regexp.
Richard M. Stallman <rms@gnu.org>
parents: 72165
diff changeset
599 (match-string 3 grep-default)))
691a901b4418 (grep-default-command): Catch errors from wildcard-to-regexp.
Richard M. Stallman <rms@gnu.org>
parents: 72165
diff changeset
600 (file-name-nondirectory buffer-file-name)))))
691a901b4418 (grep-default-command): Catch errors from wildcard-to-regexp.
Richard M. Stallman <rms@gnu.org>
parents: 72165
diff changeset
601 (setq grep-default (concat (substring grep-default
691a901b4418 (grep-default-command): Catch errors from wildcard-to-regexp.
Richard M. Stallman <rms@gnu.org>
parents: 72165
diff changeset
602 0 (match-beginning 2))
691a901b4418 (grep-default-command): Catch errors from wildcard-to-regexp.
Richard M. Stallman <rms@gnu.org>
parents: 72165
diff changeset
603 " *."
691a901b4418 (grep-default-command): Catch errors from wildcard-to-regexp.
Richard M. Stallman <rms@gnu.org>
parents: 72165
diff changeset
604 (file-name-extension buffer-file-name))))
691a901b4418 (grep-default-command): Catch errors from wildcard-to-regexp.
Richard M. Stallman <rms@gnu.org>
parents: 72165
diff changeset
605 ;; In case wildcard-to-regexp gets an error
691a901b4418 (grep-default-command): Catch errors from wildcard-to-regexp.
Richard M. Stallman <rms@gnu.org>
parents: 72165
diff changeset
606 ;; from invalid data.
691a901b4418 (grep-default-command): Catch errors from wildcard-to-regexp.
Richard M. Stallman <rms@gnu.org>
parents: 72165
diff changeset
607 (error nil))
691a901b4418 (grep-default-command): Catch errors from wildcard-to-regexp.
Richard M. Stallman <rms@gnu.org>
parents: 72165
diff changeset
608 ;; Now replace the pattern with the default tag.
57908
a4ed247d476f (grep-default-command): Take empty string
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 57769
diff changeset
609 (replace-match tag-default t t grep-default 1))))
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
610
54372
a4d3c17f991f (kill-grep): Move here from compile.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 54012
diff changeset
611
64509
9a66028f1658 (grep-regexp-alist)
Juri Linkov <juri@jurta.org>
parents: 64085
diff changeset
612 ;;;###autoload
55018
4f12dee543dc Undo previous change
Jan Djärv <jan.h.d@swipnet.se>
parents: 55017
diff changeset
613 (define-compilation-mode grep-mode "Grep"
4f12dee543dc Undo previous change
Jan Djärv <jan.h.d@swipnet.se>
parents: 55017
diff changeset
614 "Sets `grep-last-buffer' and `compilation-window-height'."
4f12dee543dc Undo previous change
Jan Djärv <jan.h.d@swipnet.se>
parents: 55017
diff changeset
615 (setq grep-last-buffer (current-buffer))
92204
ab425a596ec9 (grep-mode-tool-bar-map): New variable.
Jan Djärv <jan.h.d@swipnet.se>
parents: 88102
diff changeset
616 (set (make-local-variable 'tool-bar-map) grep-mode-tool-bar-map)
55018
4f12dee543dc Undo previous change
Jan Djärv <jan.h.d@swipnet.se>
parents: 55017
diff changeset
617 (set (make-local-variable 'compilation-error-face)
4f12dee543dc Undo previous change
Jan Djärv <jan.h.d@swipnet.se>
parents: 55017
diff changeset
618 grep-hit-face)
4f12dee543dc Undo previous change
Jan Djärv <jan.h.d@swipnet.se>
parents: 55017
diff changeset
619 (set (make-local-variable 'compilation-error-regexp-alist)
63576
7c3d537469b0 (grep-regexp-alist): Use backreference at the
Juri Linkov <juri@jurta.org>
parents: 62160
diff changeset
620 grep-regexp-alist)
65126
559a37c2f306 (grep, grep-mode): Make buffer-local variables
Juri Linkov <juri@jurta.org>
parents: 65056
diff changeset
621 (set (make-local-variable 'compilation-process-setup-function)
559a37c2f306 (grep, grep-mode): Make buffer-local variables
Juri Linkov <juri@jurta.org>
parents: 65056
diff changeset
622 'grep-process-setup)
69499
caf8f09897bc * font-lock.el (font-lock-lines-before): Delete variable, subsumed by
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 68773
diff changeset
623 (set (make-local-variable 'compilation-disable-input) t))
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
624
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
625
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
626 ;;;###autoload
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
627 (defun grep (command-args)
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
628 "Run grep, with user-specified args, and collect output in a buffer.
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
629 While grep runs asynchronously, you can use \\[next-error] (M-x next-error),
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
630 or \\<grep-mode-map>\\[compile-goto-error] in the grep \
86249
ef17406635fe (xargs-program): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 83780
diff changeset
631 output buffer, to go to the lines where grep
ef17406635fe (xargs-program): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 83780
diff changeset
632 found matches.
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
633
75803
81c369551691 (grep): Mention lgrep and rgrep in the
Dan Nicolaescu <dann@ics.uci.edu>
parents: 75347
diff changeset
634 For doing a recursive `grep', see the `rgrep' command. For running
75877
9ba96fd63815 (grep-files-aliases): Add tex and texi aliases.
Kim F. Storm <storm@cua.dk>
parents: 75803
diff changeset
635 `grep' in a specific directory, see `lgrep'.
75803
81c369551691 (grep): Mention lgrep and rgrep in the
Dan Nicolaescu <dann@ics.uci.edu>
parents: 75347
diff changeset
636
86249
ef17406635fe (xargs-program): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 83780
diff changeset
637 This command uses a special history list for its COMMAND-ARGS, so you
ef17406635fe (xargs-program): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 83780
diff changeset
638 can easily repeat a grep command.
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
639
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
640 A prefix argument says to default the argument based upon the current
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
641 tag the cursor is over, substituting it into the last grep command
86249
ef17406635fe (xargs-program): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 83780
diff changeset
642 in the grep command history (or into `grep-command' if that history
ef17406635fe (xargs-program): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 83780
diff changeset
643 list is empty)."
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
644 (interactive
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
645 (progn
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
646 (grep-compute-defaults)
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
647 (let ((default (grep-default-command)))
93114
57fa8ebfd227 * progmodes/compile.el (compile):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92493
diff changeset
648 (list (read-shell-command "Run grep (like this): "
57fa8ebfd227 * progmodes/compile.el (compile):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92493
diff changeset
649 (if current-prefix-arg default grep-command)
57fa8ebfd227 * progmodes/compile.el (compile):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92493
diff changeset
650 'grep-history
57fa8ebfd227 * progmodes/compile.el (compile):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92493
diff changeset
651 (if current-prefix-arg nil default))))))
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
652
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
653 ;; Setting process-setup-function makes exit-message-function work
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
654 ;; even when async processes aren't supported.
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
655 (compilation-start (if (and grep-use-null-device null-device)
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
656 (concat command-args " " null-device)
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
657 command-args)
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
658 'grep-mode))
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
659
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
660
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
661 ;;;###autoload
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
662 (defun grep-find (command-args)
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
663 "Run grep via find, with user-specified args COMMAND-ARGS.
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
664 Collect output in a buffer.
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
665 While find runs asynchronously, you can use the \\[next-error] command
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
666 to find the text that grep hits refer to.
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
667
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
668 This command uses a special history list for its arguments, so you can
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
669 easily repeat a find command."
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
670 (interactive
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
671 (progn
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
672 (grep-compute-defaults)
53750
4deb14fde58c (grep-compute-defaults): Use executable-command-find-posix-p.
Richard M. Stallman <rms@gnu.org>
parents: 53486
diff changeset
673 (if grep-find-command
93114
57fa8ebfd227 * progmodes/compile.el (compile):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92493
diff changeset
674 (list (read-shell-command "Run find (like this): "
57fa8ebfd227 * progmodes/compile.el (compile):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92493
diff changeset
675 grep-find-command 'grep-find-history))
53750
4deb14fde58c (grep-compute-defaults): Use executable-command-find-posix-p.
Richard M. Stallman <rms@gnu.org>
parents: 53486
diff changeset
676 ;; No default was set
4deb14fde58c (grep-compute-defaults): Use executable-command-find-posix-p.
Richard M. Stallman <rms@gnu.org>
parents: 53486
diff changeset
677 (read-string
4deb14fde58c (grep-compute-defaults): Use executable-command-find-posix-p.
Richard M. Stallman <rms@gnu.org>
parents: 53486
diff changeset
678 "compile.el: No `grep-find-command' command available. Press RET.")
4deb14fde58c (grep-compute-defaults): Use executable-command-find-posix-p.
Richard M. Stallman <rms@gnu.org>
parents: 53486
diff changeset
679 (list nil))))
70712
070ab453b31f (grep-find): Don't check grep-find-command
Kim F. Storm <storm@cua.dk>
parents: 70534
diff changeset
680 (when command-args
53750
4deb14fde58c (grep-compute-defaults): Use executable-command-find-posix-p.
Richard M. Stallman <rms@gnu.org>
parents: 53486
diff changeset
681 (let ((null-device nil)) ; see grep
4deb14fde58c (grep-compute-defaults): Use executable-command-find-posix-p.
Richard M. Stallman <rms@gnu.org>
parents: 53486
diff changeset
682 (grep command-args))))
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
683
59688
3761d1e2619d * NEWS: Mention alias `find-grep' for `grep-find'.
David Kastrup <dak@gnu.org>
parents: 59605
diff changeset
684 ;;;###autoload
3761d1e2619d * NEWS: Mention alias `find-grep' for `grep-find'.
David Kastrup <dak@gnu.org>
parents: 59605
diff changeset
685 (defalias 'find-grep 'grep-find)
3761d1e2619d * NEWS: Mention alias `find-grep' for `grep-find'.
David Kastrup <dak@gnu.org>
parents: 59605
diff changeset
686
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
687
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
688 ;; User-friendly interactive API.
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
689
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
690 (defconst grep-expand-keywords
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
691 '(("<C>" . (and cf (isearch-no-upper-case-p regexp t) "-i"))
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
692 ("<D>" . dir)
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
693 ("<F>" . files)
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
694 ("<N>" . null-device)
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
695 ("<X>" . excl)
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
696 ("<R>" . (shell-quote-argument (or regexp ""))))
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
697 "List of substitutions performed by `grep-expand-template'.
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
698 If car of an element matches, the cdr is evalled in to get the
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
699 substitution string. Note dynamic scoping of variables.")
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
700
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
701 (defun grep-expand-template (template &optional regexp files dir excl)
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
702 "Patch grep COMMAND string replacing <C>, <D>, <F>, <R>, and <X>."
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
703 (let ((command template)
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
704 (cf case-fold-search)
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
705 (case-fold-search nil))
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
706 (dolist (kw grep-expand-keywords command)
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
707 (if (string-match (car kw) command)
70315
cf0d76a2f0c7 (grep-expand-template): Use save-match-data.
Kim F. Storm <storm@cua.dk>
parents: 70259
diff changeset
708 (setq command
cf0d76a2f0c7 (grep-expand-template): Use save-match-data.
Kim F. Storm <storm@cua.dk>
parents: 70259
diff changeset
709 (replace-match
cf0d76a2f0c7 (grep-expand-template): Use save-match-data.
Kim F. Storm <storm@cua.dk>
parents: 70259
diff changeset
710 (or (if (symbolp (cdr kw))
70340
3146cc3b9e56 (grep-expand-template): Use symbol-value instead of eval on symbols.
Kim F. Storm <storm@cua.dk>
parents: 70315
diff changeset
711 (symbol-value (cdr kw))
70315
cf0d76a2f0c7 (grep-expand-template): Use save-match-data.
Kim F. Storm <storm@cua.dk>
parents: 70259
diff changeset
712 (save-match-data (eval (cdr kw))))
cf0d76a2f0c7 (grep-expand-template): Use save-match-data.
Kim F. Storm <storm@cua.dk>
parents: 70259
diff changeset
713 "")
cf0d76a2f0c7 (grep-expand-template): Use save-match-data.
Kim F. Storm <storm@cua.dk>
parents: 70259
diff changeset
714 t t command))))))
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
715
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
716 (defun grep-read-regexp ()
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
717 "Read regexp arg for interactive grep."
72163
bca9d3121eef (grep-tag-default): New function.
Kim F. Storm <storm@cua.dk>
parents: 72024
diff changeset
718 (let ((default (grep-tag-default)))
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
719 (read-string
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
720 (concat "Search for"
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
721 (if (and default (> (length default) 0))
72163
bca9d3121eef (grep-tag-default): New function.
Kim F. Storm <storm@cua.dk>
parents: 72024
diff changeset
722 (format " (default \"%s\"): " default) ": "))
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
723 nil 'grep-regexp-history default)))
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
724
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
725 (defun grep-read-files (regexp)
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
726 "Read files arg for interactive grep."
70259
58edc69a1813 (grep-read-files): Use buffer-name if no buffer-file-name.
Kim F. Storm <storm@cua.dk>
parents: 70258
diff changeset
727 (let* ((bn (or (buffer-file-name) (buffer-name)))
58edc69a1813 (grep-read-files): Use buffer-name if no buffer-file-name.
Kim F. Storm <storm@cua.dk>
parents: 70258
diff changeset
728 (fn (and bn
58edc69a1813 (grep-read-files): Use buffer-name if no buffer-file-name.
Kim F. Storm <storm@cua.dk>
parents: 70258
diff changeset
729 (stringp bn)
58edc69a1813 (grep-read-files): Use buffer-name if no buffer-file-name.
Kim F. Storm <storm@cua.dk>
parents: 70258
diff changeset
730 (file-name-nondirectory bn)))
58edc69a1813 (grep-read-files): Use buffer-name if no buffer-file-name.
Kim F. Storm <storm@cua.dk>
parents: 70258
diff changeset
731 (default
58edc69a1813 (grep-read-files): Use buffer-name if no buffer-file-name.
Kim F. Storm <storm@cua.dk>
parents: 70258
diff changeset
732 (or (and fn
58edc69a1813 (grep-read-files): Use buffer-name if no buffer-file-name.
Kim F. Storm <storm@cua.dk>
parents: 70258
diff changeset
733 (let ((aliases grep-files-aliases)
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
734 alias)
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
735 (while aliases
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
736 (setq alias (car aliases)
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
737 aliases (cdr aliases))
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
738 (if (string-match (wildcard-to-regexp (cdr alias)) fn)
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
739 (setq aliases nil)
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
740 (setq alias nil)))
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
741 (cdr alias)))
70259
58edc69a1813 (grep-read-files): Use buffer-name if no buffer-file-name.
Kim F. Storm <storm@cua.dk>
parents: 70258
diff changeset
742 (and fn
58edc69a1813 (grep-read-files): Use buffer-name if no buffer-file-name.
Kim F. Storm <storm@cua.dk>
parents: 70258
diff changeset
743 (let ((ext (file-name-extension fn)))
72165
301cc56a3482 (grep-read-files): Use car of grep-files-history or grep-files-aliases
Kim F. Storm <storm@cua.dk>
parents: 72163
diff changeset
744 (and ext (concat "*." ext))))
301cc56a3482 (grep-read-files): Use car of grep-files-history or grep-files-aliases
Kim F. Storm <storm@cua.dk>
parents: 72163
diff changeset
745 (car grep-files-history)
301cc56a3482 (grep-read-files): Use car of grep-files-history or grep-files-aliases
Kim F. Storm <storm@cua.dk>
parents: 72163
diff changeset
746 (car (car grep-files-aliases))))
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
747 (files (read-string
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
748 (concat "Search for \"" regexp
70259
58edc69a1813 (grep-read-files): Use buffer-name if no buffer-file-name.
Kim F. Storm <storm@cua.dk>
parents: 70258
diff changeset
749 "\" in files"
58edc69a1813 (grep-read-files): Use buffer-name if no buffer-file-name.
Kim F. Storm <storm@cua.dk>
parents: 70258
diff changeset
750 (if default (concat " (default " default ")"))
58edc69a1813 (grep-read-files): Use buffer-name if no buffer-file-name.
Kim F. Storm <storm@cua.dk>
parents: 70258
diff changeset
751 ": ")
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
752 nil 'grep-files-history default)))
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
753 (and files
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
754 (or (cdr (assoc files grep-files-aliases))
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
755 files))))
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
756
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
757 ;;;###autoload
75877
9ba96fd63815 (grep-files-aliases): Add tex and texi aliases.
Kim F. Storm <storm@cua.dk>
parents: 75803
diff changeset
758 (defun lgrep (regexp &optional files dir)
9ba96fd63815 (grep-files-aliases): Add tex and texi aliases.
Kim F. Storm <storm@cua.dk>
parents: 75803
diff changeset
759 "Run grep, searching for REGEXP in FILES in directory DIR.
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
760 The search is limited to file names matching shell pattern FILES.
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
761 FILES may use abbreviations defined in `grep-files-aliases', e.g.
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
762 entering `ch' is equivalent to `*.[ch]'.
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
763
70526
0c5d2102f71a (lgrep, rgrep): Doc fixes.
Kim F. Storm <storm@cua.dk>
parents: 70421
diff changeset
764 With \\[universal-argument] prefix, you can edit the constructed shell command line
0c5d2102f71a (lgrep, rgrep): Doc fixes.
Kim F. Storm <storm@cua.dk>
parents: 70421
diff changeset
765 before it is executed.
0c5d2102f71a (lgrep, rgrep): Doc fixes.
Kim F. Storm <storm@cua.dk>
parents: 70421
diff changeset
766 With two \\[universal-argument] prefixes, directly edit and run `grep-command'.
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
767
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
768 Collect output in a buffer. While grep runs asynchronously, you
86249
ef17406635fe (xargs-program): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 83780
diff changeset
769 can use \\[next-error] (M-x next-error), or \\<grep-mode-map>\\[compile-goto-error] \
ef17406635fe (xargs-program): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 83780
diff changeset
770 in the grep output buffer,
ef17406635fe (xargs-program): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 83780
diff changeset
771 to go to the lines where grep found matches.
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
772
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
773 This command shares argument histories with \\[rgrep] and \\[grep]."
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
774 (interactive
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
775 (progn
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
776 (grep-compute-defaults)
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
777 (cond
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
778 ((and grep-command (equal current-prefix-arg '(16)))
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
779 (list (read-from-minibuffer "Run: " grep-command
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
780 nil nil 'grep-history)
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
781 nil))
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
782 ((not grep-template)
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
783 (list nil
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
784 (read-string "grep.el: No `grep-template' available. Press RET.")))
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
785 (t (let* ((regexp (grep-read-regexp))
75877
9ba96fd63815 (grep-files-aliases): Add tex and texi aliases.
Kim F. Storm <storm@cua.dk>
parents: 75803
diff changeset
786 (files (grep-read-files regexp))
9ba96fd63815 (grep-files-aliases): Add tex and texi aliases.
Kim F. Storm <storm@cua.dk>
parents: 75803
diff changeset
787 (dir (read-directory-name "In directory: "
9ba96fd63815 (grep-files-aliases): Add tex and texi aliases.
Kim F. Storm <storm@cua.dk>
parents: 75803
diff changeset
788 nil default-directory t)))
9ba96fd63815 (grep-files-aliases): Add tex and texi aliases.
Kim F. Storm <storm@cua.dk>
parents: 75803
diff changeset
789 (list regexp files dir))))))
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
790 (when (and (stringp regexp) (> (length regexp) 0))
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
791 (let ((command regexp))
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
792 (if (null files)
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
793 (if (string= command grep-command)
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
794 (setq command nil))
75877
9ba96fd63815 (grep-files-aliases): Add tex and texi aliases.
Kim F. Storm <storm@cua.dk>
parents: 75803
diff changeset
795 (setq dir (file-name-as-directory (expand-file-name dir)))
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
796 (setq command (grep-expand-template
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
797 grep-template
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
798 regexp
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
799 files))
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
800 (when command
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
801 (if (equal current-prefix-arg '(4))
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
802 (setq command
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
803 (read-from-minibuffer "Confirm: "
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
804 command nil nil 'grep-history))
70421
47fe68ac1971 (lgrep, rgrep): Use add-to-history.
Kim F. Storm <storm@cua.dk>
parents: 70340
diff changeset
805 (add-to-history 'grep-history command))))
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
806 (when command
75877
9ba96fd63815 (grep-files-aliases): Add tex and texi aliases.
Kim F. Storm <storm@cua.dk>
parents: 75803
diff changeset
807 (let ((default-directory dir))
9ba96fd63815 (grep-files-aliases): Add tex and texi aliases.
Kim F. Storm <storm@cua.dk>
parents: 75803
diff changeset
808 ;; Setting process-setup-function makes exit-message-function work
9ba96fd63815 (grep-files-aliases): Add tex and texi aliases.
Kim F. Storm <storm@cua.dk>
parents: 75803
diff changeset
809 ;; even when async processes aren't supported.
9ba96fd63815 (grep-files-aliases): Add tex and texi aliases.
Kim F. Storm <storm@cua.dk>
parents: 75803
diff changeset
810 (compilation-start (if (and grep-use-null-device null-device)
9ba96fd63815 (grep-files-aliases): Add tex and texi aliases.
Kim F. Storm <storm@cua.dk>
parents: 75803
diff changeset
811 (concat command " " null-device)
82421
84edadc1cf67 Whitespace fix.
Richard M. Stallman <rms@gnu.org>
parents: 82140
diff changeset
812 command)
84edadc1cf67 Whitespace fix.
Richard M. Stallman <rms@gnu.org>
parents: 82140
diff changeset
813 'grep-mode))
75877
9ba96fd63815 (grep-files-aliases): Add tex and texi aliases.
Kim F. Storm <storm@cua.dk>
parents: 75803
diff changeset
814 (if (eq next-error-last-buffer (current-buffer))
9ba96fd63815 (grep-files-aliases): Add tex and texi aliases.
Kim F. Storm <storm@cua.dk>
parents: 75803
diff changeset
815 (setq default-directory dir))))))
9ba96fd63815 (grep-files-aliases): Add tex and texi aliases.
Kim F. Storm <storm@cua.dk>
parents: 75803
diff changeset
816
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
817
87560
62e8690b9f1a (find-name-arg): Declare for compiler.
Glenn Morris <rgm@gnu.org>
parents: 87523
diff changeset
818 (defvar find-name-arg) ; autoloaded
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
819
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
820 ;;;###autoload
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
821 (defun rgrep (regexp &optional files dir)
70526
0c5d2102f71a (lgrep, rgrep): Doc fixes.
Kim F. Storm <storm@cua.dk>
parents: 70421
diff changeset
822 "Recursively grep for REGEXP in FILES in directory tree rooted at DIR.
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
823 The search is limited to file names matching shell pattern FILES.
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
824 FILES may use abbreviations defined in `grep-files-aliases', e.g.
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
825 entering `ch' is equivalent to `*.[ch]'.
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
826
70526
0c5d2102f71a (lgrep, rgrep): Doc fixes.
Kim F. Storm <storm@cua.dk>
parents: 70421
diff changeset
827 With \\[universal-argument] prefix, you can edit the constructed shell command line
0c5d2102f71a (lgrep, rgrep): Doc fixes.
Kim F. Storm <storm@cua.dk>
parents: 70421
diff changeset
828 before it is executed.
0c5d2102f71a (lgrep, rgrep): Doc fixes.
Kim F. Storm <storm@cua.dk>
parents: 70421
diff changeset
829 With two \\[universal-argument] prefixes, directly edit and run `grep-find-command'.
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
830
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
831 Collect output in a buffer. While find runs asynchronously, you
86249
ef17406635fe (xargs-program): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 83780
diff changeset
832 can use \\[next-error] (M-x next-error), or \\<grep-mode-map>\\[compile-goto-error] \
ef17406635fe (xargs-program): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 83780
diff changeset
833 in the grep output buffer,
ef17406635fe (xargs-program): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 83780
diff changeset
834 to go to the lines where grep found matches.
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
835
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
836 This command shares argument histories with \\[lgrep] and \\[grep-find]."
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
837 (interactive
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
838 (progn
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
839 (grep-compute-defaults)
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
840 (cond
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
841 ((and grep-find-command (equal current-prefix-arg '(16)))
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
842 (list (read-from-minibuffer "Run: " grep-find-command
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
843 nil nil 'grep-find-history)
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
844 nil))
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
845 ((not grep-find-template)
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
846 (list nil nil
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
847 (read-string "grep.el: No `grep-find-template' available. Press RET.")))
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
848 (t (let* ((regexp (grep-read-regexp))
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
849 (files (grep-read-files regexp))
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
850 (dir (read-directory-name "Base directory: "
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
851 nil default-directory t)))
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
852 (list regexp files dir))))))
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
853 (when (and (stringp regexp) (> (length regexp) 0))
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
854 (if (null files)
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
855 (if (not (string= regexp grep-find-command))
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
856 (compilation-start regexp 'grep-mode))
70534
afe3317800c2 (rgrep): Set default directory of *grep*
Kim F. Storm <storm@cua.dk>
parents: 70526
diff changeset
857 (setq dir (file-name-as-directory (expand-file-name dir)))
afe3317800c2 (rgrep): Set default directory of *grep*
Kim F. Storm <storm@cua.dk>
parents: 70526
diff changeset
858 (let ((command (grep-expand-template
afe3317800c2 (rgrep): Set default directory of *grep*
Kim F. Storm <storm@cua.dk>
parents: 70526
diff changeset
859 grep-find-template
afe3317800c2 (rgrep): Set default directory of *grep*
Kim F. Storm <storm@cua.dk>
parents: 70526
diff changeset
860 regexp
72500
35e43fe3d8ef (grep-find-use-xargs): Use explicit value `exec'
Kim F. Storm <storm@cua.dk>
parents: 72173
diff changeset
861 (concat (shell-quote-argument "(")
79589
05774558f6e1 (rgrep): Use find-name-arg.
Jason Rumney <jasonr@gnu.org>
parents: 78234
diff changeset
862 " " find-name-arg " "
70534
afe3317800c2 (rgrep): Set default directory of *grep*
Kim F. Storm <storm@cua.dk>
parents: 70526
diff changeset
863 (mapconcat #'shell-quote-argument
afe3317800c2 (rgrep): Set default directory of *grep*
Kim F. Storm <storm@cua.dk>
parents: 70526
diff changeset
864 (split-string files)
79643
078fe4baaf42 (rgrep): Fix last change.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 79589
diff changeset
865 (concat " -o " find-name-arg " "))
72500
35e43fe3d8ef (grep-find-use-xargs): Use explicit value `exec'
Kim F. Storm <storm@cua.dk>
parents: 72173
diff changeset
866 " "
35e43fe3d8ef (grep-find-use-xargs): Use explicit value `exec'
Kim F. Storm <storm@cua.dk>
parents: 72173
diff changeset
867 (shell-quote-argument ")"))
70534
afe3317800c2 (rgrep): Set default directory of *grep*
Kim F. Storm <storm@cua.dk>
parents: 70526
diff changeset
868 dir
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
869 (and grep-find-ignored-directories
72500
35e43fe3d8ef (grep-find-use-xargs): Use explicit value `exec'
Kim F. Storm <storm@cua.dk>
parents: 72173
diff changeset
870 (concat (shell-quote-argument "(")
35e43fe3d8ef (grep-find-use-xargs): Use explicit value `exec'
Kim F. Storm <storm@cua.dk>
parents: 72173
diff changeset
871 ;; we should use shell-quote-argument here
35e43fe3d8ef (grep-find-use-xargs): Use explicit value `exec'
Kim F. Storm <storm@cua.dk>
parents: 72173
diff changeset
872 " -path "
35e43fe3d8ef (grep-find-use-xargs): Use explicit value `exec'
Kim F. Storm <storm@cua.dk>
parents: 72173
diff changeset
873 (mapconcat #'(lambda (dir)
35e43fe3d8ef (grep-find-use-xargs): Use explicit value `exec'
Kim F. Storm <storm@cua.dk>
parents: 72173
diff changeset
874 (shell-quote-argument
35e43fe3d8ef (grep-find-use-xargs): Use explicit value `exec'
Kim F. Storm <storm@cua.dk>
parents: 72173
diff changeset
875 (concat "*/" dir)))
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
876 grep-find-ignored-directories
72500
35e43fe3d8ef (grep-find-use-xargs): Use explicit value `exec'
Kim F. Storm <storm@cua.dk>
parents: 72173
diff changeset
877 " -o -path ")
35e43fe3d8ef (grep-find-use-xargs): Use explicit value `exec'
Kim F. Storm <storm@cua.dk>
parents: 72173
diff changeset
878 " "
35e43fe3d8ef (grep-find-use-xargs): Use explicit value `exec'
Kim F. Storm <storm@cua.dk>
parents: 72173
diff changeset
879 (shell-quote-argument ")")
35e43fe3d8ef (grep-find-use-xargs): Use explicit value `exec'
Kim F. Storm <storm@cua.dk>
parents: 72173
diff changeset
880 " -prune -o ")))))
70258
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
881 (when command
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
882 (if current-prefix-arg
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
883 (setq command
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
884 (read-from-minibuffer "Confirm: "
5dfde453f39e (defgroup grep): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 69499
diff changeset
885 command nil nil 'grep-find-history))
70421
47fe68ac1971 (lgrep, rgrep): Use add-to-history.
Kim F. Storm <storm@cua.dk>
parents: 70340
diff changeset
886 (add-to-history 'grep-find-history command))
70534
afe3317800c2 (rgrep): Set default directory of *grep*
Kim F. Storm <storm@cua.dk>
parents: 70526
diff changeset
887 (let ((default-directory dir))
afe3317800c2 (rgrep): Set default directory of *grep*
Kim F. Storm <storm@cua.dk>
parents: 70526
diff changeset
888 (compilation-start command 'grep-mode))
afe3317800c2 (rgrep): Set default directory of *grep*
Kim F. Storm <storm@cua.dk>
parents: 70526
diff changeset
889 ;; Set default-directory if we started rgrep in the *grep* buffer.
afe3317800c2 (rgrep): Set default directory of *grep*
Kim F. Storm <storm@cua.dk>
parents: 70526
diff changeset
890 (if (eq next-error-last-buffer (current-buffer))
afe3317800c2 (rgrep): Set default directory of *grep*
Kim F. Storm <storm@cua.dk>
parents: 70526
diff changeset
891 (setq default-directory dir)))))))
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
892
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
893
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
894 (provide 'grep)
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
895
57043
cb013e5835b8 (grep-mode): Remove unnecessary autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 57022
diff changeset
896 ;; arch-tag: 5a5b9169-a79d-4f38-9c38-f69615f39c4d
53139
df3033332097 * progmodes/grep.el: New file with grep code from compile.el.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
897 ;;; grep.el ends here