658
|
1 ;;; replace.el --- replace commands for Emacs.
|
|
2
|
14819
|
3 ;; Copyright (C) 1985, 1986, 1987, 1992, 1994, 1996 Free Software Foundation, Inc.
|
61
|
4
|
|
5 ;; This file is part of GNU Emacs.
|
|
6
|
|
7 ;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
8 ;; it under the terms of the GNU General Public License as published by
|
732
|
9 ;; the Free Software Foundation; either version 2, or (at your option)
|
61
|
10 ;; any later version.
|
|
11
|
|
12 ;; GNU Emacs is distributed in the hope that it will be useful,
|
|
13 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
15 ;; GNU General Public License for more details.
|
|
16
|
|
17 ;; You should have received a copy of the GNU General Public License
|
14169
|
18 ;; along with GNU Emacs; see the file COPYING. If not, write to the
|
|
19 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
20 ;; Boston, MA 02111-1307, USA.
|
61
|
21
|
2315
|
22 ;;; Commentary:
|
|
23
|
|
24 ;; This package supplies the string and regular-expression replace functions
|
|
25 ;; documented in the Emacs user's manual.
|
|
26
|
788
|
27 ;;; Code:
|
61
|
28
|
17664
|
29 (defcustom case-replace t
|
|
30 "*Non-nil means query-replace should preserve case in replacements."
|
|
31 :type 'boolean
|
|
32 :group 'matching)
|
264
|
33
|
864
|
34 (defvar query-replace-history nil)
|
|
35
|
8935
|
36 (defvar query-replace-interactive nil
|
|
37 "Non-nil means `query-replace' uses the last search string.
|
|
38 That becomes the \"string to replace\".")
|
|
39
|
|
40 (defun query-replace-read-args (string regexp-flag)
|
864
|
41 (let (from to)
|
8935
|
42 (if query-replace-interactive
|
|
43 (setq from (car (if regexp-flag regexp-search-ring search-ring)))
|
|
44 (setq from (read-from-minibuffer (format "%s: " string)
|
|
45 nil nil nil
|
|
46 'query-replace-history)))
|
864
|
47 (setq to (read-from-minibuffer (format "%s %s with: " string from)
|
|
48 nil nil nil
|
|
49 'query-replace-history))
|
|
50 (list from to current-prefix-arg)))
|
|
51
|
260
|
52 (defun query-replace (from-string to-string &optional arg)
|
|
53 "Replace some occurrences of FROM-STRING with TO-STRING.
|
|
54 As each match is found, the user must type a character saying
|
|
55 what to do with it. For directions, type \\[help-command] at that time.
|
|
56
|
8935
|
57 If `query-replace-interactive' is non-nil, the last incremental search
|
|
58 string is used as FROM-STRING--you don't have to specify it with the
|
|
59 minibuffer.
|
|
60
|
6707
|
61 Preserves case in each replacement if `case-replace' and `case-fold-search'
|
260
|
62 are non-nil and FROM-STRING has no uppercase letters.
|
10104
|
63 \(Preserving case means that if the string matched is all caps, or capitalized,
|
|
64 then its replacement is upcased or capitalized.)
|
|
65
|
6707
|
66 Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace
|
2080
|
67 only matches surrounded by word boundaries.
|
|
68
|
|
69 To customize possible responses, change the \"bindings\" in `query-replace-map'."
|
8935
|
70 (interactive (query-replace-read-args "Query replace" nil))
|
10157
|
71 (perform-replace from-string to-string t nil arg))
|
268
|
72 (define-key esc-map "%" 'query-replace)
|
260
|
73
|
|
74 (defun query-replace-regexp (regexp to-string &optional arg)
|
|
75 "Replace some things after point matching REGEXP with TO-STRING.
|
|
76 As each match is found, the user must type a character saying
|
|
77 what to do with it. For directions, type \\[help-command] at that time.
|
|
78
|
8935
|
79 If `query-replace-interactive' is non-nil, the last incremental search
|
|
80 regexp is used as REGEXP--you don't have to specify it with the
|
|
81 minibuffer.
|
|
82
|
6707
|
83 Preserves case in each replacement if `case-replace' and `case-fold-search'
|
260
|
84 are non-nil and REGEXP has no uppercase letters.
|
6707
|
85 Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace
|
260
|
86 only matches surrounded by word boundaries.
|
6707
|
87 In TO-STRING, `\\&' stands for whatever matched the whole of REGEXP,
|
|
88 and `\\=\\N' (where N is a digit) stands for
|
|
89 whatever what matched the Nth `\\(...\\)' in REGEXP."
|
8935
|
90 (interactive (query-replace-read-args "Query replace regexp" t))
|
10157
|
91 (perform-replace regexp to-string t t arg))
|
260
|
92
|
|
93 (defun map-query-replace-regexp (regexp to-strings &optional arg)
|
|
94 "Replace some matches for REGEXP with various strings, in rotation.
|
|
95 The second argument TO-STRINGS contains the replacement strings, separated
|
|
96 by spaces. This command works like `query-replace-regexp' except
|
|
97 that each successive replacement uses the next successive replacement string,
|
|
98 wrapping around from the last such string to the first.
|
|
99
|
|
100 Non-interactively, TO-STRINGS may be a list of replacement strings.
|
|
101
|
8935
|
102 If `query-replace-interactive' is non-nil, the last incremental search
|
|
103 regexp is used as REGEXP--you don't have to specify it with the minibuffer.
|
|
104
|
260
|
105 A prefix argument N says to use each replacement string N times
|
|
106 before rotating to the next."
|
864
|
107 (interactive
|
|
108 (let (from to)
|
8935
|
109 (setq from (if query-replace-interactive
|
|
110 (car regexp-search-ring)
|
|
111 (read-from-minibuffer "Map query replace (regexp): "
|
|
112 nil nil nil
|
|
113 'query-replace-history)))
|
864
|
114 (setq to (read-from-minibuffer
|
|
115 (format "Query replace %s with (space-separated strings): "
|
|
116 from)
|
|
117 nil nil nil
|
|
118 'query-replace-history))
|
|
119 (list from to current-prefix-arg)))
|
260
|
120 (let (replacements)
|
|
121 (if (listp to-strings)
|
|
122 (setq replacements to-strings)
|
|
123 (while (/= (length to-strings) 0)
|
|
124 (if (string-match " " to-strings)
|
|
125 (setq replacements
|
|
126 (append replacements
|
|
127 (list (substring to-strings 0
|
|
128 (string-match " " to-strings))))
|
|
129 to-strings (substring to-strings
|
|
130 (1+ (string-match " " to-strings))))
|
|
131 (setq replacements (append replacements (list to-strings))
|
|
132 to-strings ""))))
|
10157
|
133 (perform-replace regexp replacements t t nil arg)))
|
260
|
134
|
|
135 (defun replace-string (from-string to-string &optional delimited)
|
|
136 "Replace occurrences of FROM-STRING with TO-STRING.
|
|
137 Preserve case in each match if `case-replace' and `case-fold-search'
|
|
138 are non-nil and FROM-STRING has no uppercase letters.
|
10104
|
139 \(Preserving case means that if the string matched is all caps, or capitalized,
|
|
140 then its replacement is upcased or capitalized.)
|
|
141
|
6707
|
142 Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace
|
260
|
143 only matches surrounded by word boundaries.
|
|
144
|
8935
|
145 If `query-replace-interactive' is non-nil, the last incremental search
|
|
146 string is used as FROM-STRING--you don't have to specify it with the
|
|
147 minibuffer.
|
|
148
|
260
|
149 This function is usually the wrong thing to use in a Lisp program.
|
|
150 What you probably want is a loop like this:
|
6707
|
151 (while (search-forward FROM-STRING nil t)
|
|
152 (replace-match TO-STRING nil t))
|
17211
|
153 which will run faster and will not set the mark or print anything.
|
|
154 \(You may need a more complex loop if FROM-STRING can match the null string
|
|
155 and TO-STRING is also null.)"
|
8935
|
156 (interactive (query-replace-read-args "Replace string" nil))
|
10157
|
157 (perform-replace from-string to-string nil nil delimited))
|
260
|
158
|
|
159 (defun replace-regexp (regexp to-string &optional delimited)
|
|
160 "Replace things after point matching REGEXP with TO-STRING.
|
6707
|
161 Preserve case in each match if `case-replace' and `case-fold-search'
|
260
|
162 are non-nil and REGEXP has no uppercase letters.
|
6707
|
163 Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace
|
260
|
164 only matches surrounded by word boundaries.
|
6707
|
165 In TO-STRING, `\\&' stands for whatever matched the whole of REGEXP,
|
|
166 and `\\=\\N' (where N is a digit) stands for
|
6722
|
167 whatever what matched the Nth `\\(...\\)' in REGEXP.
|
260
|
168
|
8935
|
169 If `query-replace-interactive' is non-nil, the last incremental search
|
|
170 regexp is used as REGEXP--you don't have to specify it with the minibuffer.
|
|
171
|
260
|
172 This function is usually the wrong thing to use in a Lisp program.
|
|
173 What you probably want is a loop like this:
|
|
174 (while (re-search-forward REGEXP nil t)
|
6707
|
175 (replace-match TO-STRING nil nil))
|
260
|
176 which will run faster and will not set the mark or print anything."
|
8935
|
177 (interactive (query-replace-read-args "Replace regexp" t))
|
10157
|
178 (perform-replace regexp to-string nil t delimited))
|
2408
|
179
|
|
180 (defvar regexp-history nil
|
|
181 "History list for some commands that read regular expressions.")
|
260
|
182
|
2571
|
183 (defalias 'delete-non-matching-lines 'keep-lines)
|
61
|
184 (defun keep-lines (regexp)
|
|
185 "Delete all lines except those containing matches for REGEXP.
|
|
186 A match split across lines preserves all the lines it lies in.
|
|
187 Applies to all lines after point."
|
2408
|
188 (interactive (list (read-from-minibuffer
|
2685
|
189 "Keep lines (containing match for regexp): "
|
2408
|
190 nil nil nil 'regexp-history)))
|
61
|
191 (save-excursion
|
|
192 (or (bolp) (forward-line 1))
|
|
193 (let ((start (point)))
|
|
194 (while (not (eobp))
|
|
195 ;; Start is first char not preserved by previous match.
|
|
196 (if (not (re-search-forward regexp nil 'move))
|
|
197 (delete-region start (point-max))
|
|
198 (let ((end (save-excursion (goto-char (match-beginning 0))
|
|
199 (beginning-of-line)
|
|
200 (point))))
|
|
201 ;; Now end is first char preserved by the new match.
|
|
202 (if (< start end)
|
|
203 (delete-region start end))))
|
|
204 (setq start (save-excursion (forward-line 1)
|
|
205 (point)))
|
|
206 ;; If the match was empty, avoid matching again at same place.
|
|
207 (and (not (eobp)) (= (match-beginning 0) (match-end 0))
|
|
208 (forward-char 1))))))
|
|
209
|
2571
|
210 (defalias 'delete-matching-lines 'flush-lines)
|
61
|
211 (defun flush-lines (regexp)
|
|
212 "Delete lines containing matches for REGEXP.
|
|
213 If a match is split across lines, all the lines it lies in are deleted.
|
|
214 Applies to lines after point."
|
2408
|
215 (interactive (list (read-from-minibuffer
|
2685
|
216 "Flush lines (containing match for regexp): "
|
2408
|
217 nil nil nil 'regexp-history)))
|
61
|
218 (save-excursion
|
|
219 (while (and (not (eobp))
|
|
220 (re-search-forward regexp nil t))
|
|
221 (delete-region (save-excursion (goto-char (match-beginning 0))
|
|
222 (beginning-of-line)
|
|
223 (point))
|
|
224 (progn (forward-line 1) (point))))))
|
|
225
|
2571
|
226 (defalias 'count-matches 'how-many)
|
61
|
227 (defun how-many (regexp)
|
|
228 "Print number of matches for REGEXP following point."
|
2408
|
229 (interactive (list (read-from-minibuffer
|
2685
|
230 "How many matches for (regexp): "
|
2408
|
231 nil nil nil 'regexp-history)))
|
61
|
232 (let ((count 0) opoint)
|
|
233 (save-excursion
|
|
234 (while (and (not (eobp))
|
|
235 (progn (setq opoint (point))
|
|
236 (re-search-forward regexp nil t)))
|
|
237 (if (= opoint (point))
|
|
238 (forward-char 1)
|
|
239 (setq count (1+ count))))
|
|
240 (message "%d occurrences" count))))
|
2408
|
241
|
61
|
242 (defvar occur-mode-map ())
|
|
243 (if occur-mode-map
|
|
244 ()
|
|
245 (setq occur-mode-map (make-sparse-keymap))
|
6596
|
246 (define-key occur-mode-map [mouse-2] 'occur-mode-mouse-goto)
|
10266
a44beb55d3e1
(occur-mode-map): Bind C-m and `return' to occur-mode-goto-occurrence.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
247 (define-key occur-mode-map "\C-c\C-c" 'occur-mode-goto-occurrence)
|
16864
|
248 (define-key occur-mode-map "\C-m" 'occur-mode-goto-occurrence)
|
|
249 (define-key occur-mode-map "g" 'revert-buffer))
|
61
|
250
|
|
251 (defvar occur-buffer nil)
|
|
252 (defvar occur-nlines nil)
|
|
253 (defvar occur-pos-list nil)
|
16864
|
254 (defvar occur-command-arguments nil
|
|
255 "Arguments that were given to `occur' when it made this buffer.")
|
61
|
256
|
17655
|
257 (put 'occur-mode 'mode-class 'special)
|
|
258
|
61
|
259 (defun occur-mode ()
|
|
260 "Major mode for output from \\[occur].
|
10266
a44beb55d3e1
(occur-mode-map): Bind C-m and `return' to occur-mode-goto-occurrence.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
261 \\<occur-mode-map>Move point to one of the items in this buffer, then use
|
a44beb55d3e1
(occur-mode-map): Bind C-m and `return' to occur-mode-goto-occurrence.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
262 \\[occur-mode-goto-occurrence] to go to the occurrence that the item refers to.
|
a44beb55d3e1
(occur-mode-map): Bind C-m and `return' to occur-mode-goto-occurrence.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
263 Alternatively, click \\[occur-mode-mouse-goto] on an item to go to it.
|
a44beb55d3e1
(occur-mode-map): Bind C-m and `return' to occur-mode-goto-occurrence.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
264
|
61
|
265 \\{occur-mode-map}"
|
|
266 (kill-all-local-variables)
|
|
267 (use-local-map occur-mode-map)
|
|
268 (setq major-mode 'occur-mode)
|
|
269 (setq mode-name "Occur")
|
16864
|
270 (make-local-variable 'revert-buffer-function)
|
|
271 (setq revert-buffer-function 'occur-revert-function)
|
61
|
272 (make-local-variable 'occur-buffer)
|
|
273 (make-local-variable 'occur-nlines)
|
4975
|
274 (make-local-variable 'occur-pos-list)
|
16864
|
275 (make-local-variable 'occur-command-arguments)
|
4975
|
276 (run-hooks 'occur-mode-hook))
|
61
|
277
|
16864
|
278 ;; Handle revert-buffer for *Occur* buffers.
|
|
279 (defun occur-revert-function (ignore1 ignore2)
|
|
280 (let ((args occur-command-arguments ))
|
|
281 (save-excursion
|
|
282 (set-buffer occur-buffer)
|
|
283 (apply 'occur args))))
|
|
284
|
6596
|
285 (defun occur-mode-mouse-goto (event)
|
|
286 "In Occur mode, go to the occurrence whose line you click on."
|
|
287 (interactive "e")
|
|
288 (let (buffer pos)
|
|
289 (save-excursion
|
|
290 (set-buffer (window-buffer (posn-window (event-end event))))
|
|
291 (save-excursion
|
|
292 (goto-char (posn-point (event-end event)))
|
|
293 (setq pos (occur-mode-find-occurrence))
|
|
294 (setq buffer occur-buffer)))
|
|
295 (pop-to-buffer buffer)
|
|
296 (goto-char (marker-position pos))))
|
|
297
|
|
298 (defun occur-mode-find-occurrence ()
|
61
|
299 (if (or (null occur-buffer)
|
|
300 (null (buffer-name occur-buffer)))
|
|
301 (progn
|
|
302 (setq occur-buffer nil
|
|
303 occur-pos-list nil)
|
|
304 (error "Buffer in which occurrences were found is deleted")))
|
6596
|
305 (let* ((line-count
|
|
306 (count-lines (point-min)
|
|
307 (save-excursion
|
61
|
308 (beginning-of-line)
|
6596
|
309 (point))))
|
|
310 (occur-number (save-excursion
|
|
311 (beginning-of-line)
|
|
312 (/ (1- line-count)
|
61
|
313 (cond ((< occur-nlines 0)
|
|
314 (- 2 occur-nlines))
|
|
315 ((> occur-nlines 0)
|
|
316 (+ 2 (* 2 occur-nlines)))
|
|
317 (t 1)))))
|
|
318 (pos (nth occur-number occur-pos-list)))
|
6596
|
319 (if (< line-count 1)
|
|
320 (error "No occurrence on this line"))
|
4429
|
321 (or pos
|
|
322 (error "No occurrence on this line"))
|
6596
|
323 pos))
|
|
324
|
|
325 (defun occur-mode-goto-occurrence ()
|
|
326 "Go to the occurrence the current line describes."
|
|
327 (interactive)
|
|
328 (let ((pos (occur-mode-find-occurrence)))
|
61
|
329 (pop-to-buffer occur-buffer)
|
6608
|
330 (goto-char (marker-position pos))))
|
2408
|
331
|
17664
|
332 (defcustom list-matching-lines-default-context-lines 0
|
260
|
333 "*Default number of context lines to include around a `list-matching-lines'
|
61
|
334 match. A negative number means to include that many lines before the match.
|
17664
|
335 A positive number means to include that many lines both before and after."
|
|
336 :type 'integer
|
|
337 :group 'matching)
|
61
|
338
|
2571
|
339 (defalias 'list-matching-lines 'occur)
|
61
|
340
|
16818
|
341 (defvar list-matching-lines-face 'bold
|
|
342 "*Face used by M-x list-matching-lines to show the text that matches.
|
|
343 If the value is nil, don't highlight the matching portions specially.")
|
|
344
|
61
|
345 (defun occur (regexp &optional nlines)
|
1427
|
346 "Show all lines in the current buffer containing a match for REGEXP.
|
61
|
347
|
260
|
348 If a match spreads across multiple lines, all those lines are shown.
|
|
349
|
|
350 Each line is displayed with NLINES lines before and after, or -NLINES
|
|
351 before if NLINES is negative.
|
|
352 NLINES defaults to `list-matching-lines-default-context-lines'.
|
61
|
353 Interactively it is the prefix arg.
|
|
354
|
2408
|
355 The lines are shown in a buffer named `*Occur*'.
|
61
|
356 It serves as a menu to find any of the occurrences in this buffer.
|
17655
|
357 \\<occur-mode-map>\\[describe-mode] in that buffer will explain how.
|
17638
9ece72836276
(occur): If regexp has uppercase in it, match it case-sensitively.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
358
|
17655
|
359 If REGEXP contains upper case characters (excluding those preceded by `\\'),
|
|
360 the matching is case-sensitive."
|
15040
|
361 (interactive
|
|
362 (list (let* ((default (car regexp-history))
|
|
363 (input
|
|
364 (read-from-minibuffer
|
|
365 (if default
|
|
366 (format "List lines matching regexp (default `%s'): "
|
|
367 default)
|
|
368 "List lines matching regexp: ")
|
|
369 nil nil nil 'regexp-history)))
|
|
370 (if (string-equal input "")
|
|
371 default
|
|
372 (set-text-properties 0 (length input) nil input)
|
|
373 input))
|
|
374 current-prefix-arg))
|
|
375 (let ((nlines (if nlines
|
|
376 (prefix-numeric-value nlines)
|
|
377 list-matching-lines-default-context-lines))
|
|
378 (first t)
|
61
|
379 (buffer (current-buffer))
|
11075
|
380 (dir default-directory)
|
61
|
381 (linenum 1)
|
324
|
382 (prevpos (point-min))
|
17638
9ece72836276
(occur): If regexp has uppercase in it, match it case-sensitively.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
383 (case-fold-search (and case-fold-search
|
9ece72836276
(occur): If regexp has uppercase in it, match it case-sensitively.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
384 (isearch-no-upper-case-p regexp t)))
|
324
|
385 (final-context-start (make-marker)))
|
1427
|
386 ;;; (save-excursion
|
|
387 ;;; (beginning-of-line)
|
|
388 ;;; (setq linenum (1+ (count-lines (point-min) (point))))
|
|
389 ;;; (setq prevpos (point)))
|
14819
|
390 (save-excursion
|
|
391 (goto-char (point-min))
|
|
392 ;; Check first whether there are any matches at all.
|
|
393 (if (not (re-search-forward regexp nil t))
|
|
394 (message "No matches for `%s'" regexp)
|
|
395 ;; Back up, so the search loop below will find the first match.
|
|
396 (goto-char (match-beginning 0))
|
|
397 (with-output-to-temp-buffer "*Occur*"
|
|
398 (save-excursion
|
|
399 (set-buffer standard-output)
|
|
400 (setq default-directory dir)
|
|
401 ;; We will insert the number of lines, and "lines", later.
|
|
402 (insert " matching ")
|
|
403 (let ((print-escape-newlines t))
|
|
404 (prin1 regexp))
|
|
405 (insert " in buffer " (buffer-name buffer) ?. ?\n)
|
|
406 (occur-mode)
|
|
407 (setq occur-buffer buffer)
|
|
408 (setq occur-nlines nlines)
|
16864
|
409 (setq occur-pos-list ())
|
|
410 (setq occur-command-arguments
|
|
411 (list regexp nlines)))
|
14819
|
412 (if (eq buffer standard-output)
|
13069
|
413 (goto-char (point-max)))
|
14819
|
414 (save-excursion
|
|
415 ;; Find next match, but give up if prev match was at end of buffer.
|
|
416 (while (and (not (= prevpos (point-max)))
|
|
417 (re-search-forward regexp nil t))
|
|
418 (goto-char (match-beginning 0))
|
|
419 (beginning-of-line)
|
|
420 (save-match-data
|
|
421 (setq linenum (+ linenum (count-lines prevpos (point)))))
|
|
422 (setq prevpos (point))
|
|
423 (goto-char (match-end 0))
|
|
424 (let* ((start (save-excursion
|
|
425 (goto-char (match-beginning 0))
|
|
426 (forward-line (if (< nlines 0) nlines (- nlines)))
|
|
427 (point)))
|
|
428 (end (save-excursion
|
|
429 (goto-char (match-end 0))
|
|
430 (if (> nlines 0)
|
|
431 (forward-line (1+ nlines))
|
|
432 (forward-line 1))
|
|
433 (point)))
|
16818
|
434 ;; Record where the actual match
|
|
435 (match-offset
|
|
436 (save-excursion
|
|
437 (goto-char (match-beginning 0))
|
|
438 (beginning-of-line)
|
|
439 ;; +6 to skip over line number
|
|
440 (+ 6 (- (match-beginning 0) (point)))))
|
|
441 (match-len (- (match-end 0) (match-beginning 0)))
|
14819
|
442 (tag (format "%5d" linenum))
|
|
443 (empty (make-string (length tag) ?\ ))
|
|
444 tem)
|
|
445 (save-excursion
|
|
446 (setq tem (make-marker))
|
|
447 (set-marker tem (point))
|
|
448 (set-buffer standard-output)
|
|
449 (setq occur-pos-list (cons tem occur-pos-list))
|
|
450 (or first (zerop nlines)
|
|
451 (insert "--------\n"))
|
|
452 (setq first nil)
|
|
453 (insert-buffer-substring buffer start end)
|
|
454 (set-marker final-context-start
|
|
455 (- (point) (- end (match-end 0))))
|
17010
|
456 (goto-char (- (point) (- end start)))
|
14819
|
457 (setq tem nlines)
|
|
458 (while (> tem 0)
|
|
459 (insert empty ?:)
|
|
460 (forward-line 1)
|
|
461 (setq tem (1- tem)))
|
16819
|
462 (let ((this-linenum linenum)
|
|
463 line-start)
|
14819
|
464 (while (< (point) final-context-start)
|
|
465 (if (null tag)
|
|
466 (setq tag (format "%5d" this-linenum)))
|
|
467 (insert tag ?:)
|
16818
|
468 (setq line-start
|
|
469 (save-excursion
|
|
470 (beginning-of-line)
|
|
471 (point)))
|
|
472 (put-text-property line-start
|
14819
|
473 (save-excursion
|
|
474 (end-of-line)
|
|
475 (point))
|
|
476 'mouse-face 'highlight)
|
16818
|
477 (if list-matching-lines-face
|
|
478 (put-text-property
|
|
479 (+ line-start match-offset)
|
|
480 (+ line-start match-offset match-len)
|
|
481 'face list-matching-lines-face))
|
14819
|
482 (forward-line 1)
|
|
483 (setq tag nil)
|
|
484 (setq this-linenum (1+ this-linenum)))
|
|
485 (while (<= (point) final-context-start)
|
|
486 (insert empty ?:)
|
|
487 (forward-line 1)
|
|
488 (setq this-linenum (1+ this-linenum))))
|
|
489 (while (< tem nlines)
|
|
490 (insert empty ?:)
|
|
491 (forward-line 1)
|
|
492 (setq tem (1+ tem)))
|
|
493 (goto-char (point-max)))
|
|
494 (forward-line 1)))
|
|
495 (set-buffer standard-output)
|
|
496 ;; Put positions in increasing order to go with buffer.
|
|
497 (setq occur-pos-list (nreverse occur-pos-list))
|
|
498 (goto-char (point-min))
|
15328
|
499 (let ((message-string
|
|
500 (if (= (length occur-pos-list) 1)
|
|
501 "1 line"
|
|
502 (format "%d lines" (length occur-pos-list)))))
|
|
503 (insert message-string)
|
|
504 (if (interactive-p)
|
|
505 (message "%s matched" message-string)))))))))
|
61
|
506
|
2080
|
507 ;; It would be nice to use \\[...], but there is no reasonable way
|
|
508 ;; to make that display both SPC and Y.
|
61
|
509 (defconst query-replace-help
|
|
510 "Type Space or `y' to replace one match, Delete or `n' to skip to next,
|
5337
|
511 RET or `q' to exit, Period to replace one match and exit,
|
61
|
512 Comma to replace but not move point immediately,
|
|
513 C-r to enter recursive edit (\\[exit-recursive-edit] to get out again),
|
|
514 C-w to delete match and recursive edit,
|
|
515 C-l to clear the screen, redisplay, and offer same replacement again,
|
|
516 ! to replace all remaining matches with no more questions,
|
|
517 ^ to move point back to previous match."
|
|
518 "Help message while in query-replace")
|
|
519
|
2080
|
520 (defvar query-replace-map (make-sparse-keymap)
|
|
521 "Keymap that defines the responses to questions in `query-replace'.
|
|
522 The \"bindings\" in this map are not commands; they are answers.
|
|
523 The valid answers include `act', `skip', `act-and-show',
|
|
524 `exit', `act-and-exit', `edit', `delete-and-edit', `recenter',
|
10057
|
525 `automatic', `backup', `exit-prefix', and `help'.")
|
2080
|
526
|
|
527 (define-key query-replace-map " " 'act)
|
|
528 (define-key query-replace-map "\d" 'skip)
|
|
529 (define-key query-replace-map [delete] 'skip)
|
2327
|
530 (define-key query-replace-map [backspace] 'skip)
|
2080
|
531 (define-key query-replace-map "y" 'act)
|
|
532 (define-key query-replace-map "n" 'skip)
|
9908
|
533 (define-key query-replace-map "Y" 'act)
|
|
534 (define-key query-replace-map "N" 'skip)
|
2080
|
535 (define-key query-replace-map "," 'act-and-show)
|
|
536 (define-key query-replace-map "q" 'exit)
|
3852
|
537 (define-key query-replace-map "\r" 'exit)
|
3885
|
538 (define-key query-replace-map [return] 'exit)
|
2080
|
539 (define-key query-replace-map "." 'act-and-exit)
|
|
540 (define-key query-replace-map "\C-r" 'edit)
|
|
541 (define-key query-replace-map "\C-w" 'delete-and-edit)
|
|
542 (define-key query-replace-map "\C-l" 'recenter)
|
|
543 (define-key query-replace-map "!" 'automatic)
|
|
544 (define-key query-replace-map "^" 'backup)
|
|
545 (define-key query-replace-map "\C-h" 'help)
|
12109
|
546 (define-key query-replace-map [f1] 'help)
|
|
547 (define-key query-replace-map [help] 'help)
|
2080
|
548 (define-key query-replace-map "?" 'help)
|
2083
ff782069e797
(query-replace-map): Add `quit' bindings. Delete default binding.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
549 (define-key query-replace-map "\C-g" 'quit)
|
ff782069e797
(query-replace-map): Add `quit' bindings. Delete default binding.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
550 (define-key query-replace-map "\C-]" 'quit)
|
10057
|
551 (define-key query-replace-map "\e" 'exit-prefix)
|
|
552 (define-key query-replace-map [escape] 'exit-prefix)
|
2080
|
553
|
61
|
554 (defun perform-replace (from-string replacements
|
|
555 query-flag regexp-flag delimited-flag
|
2080
|
556 &optional repeat-count map)
|
61
|
557 "Subroutine of `query-replace'. Its complexity handles interactive queries.
|
|
558 Don't use this in your own program unless you want to query and set the mark
|
|
559 just as `query-replace' does. Instead, write a simple loop like this:
|
|
560 (while (re-search-forward \"foo[ \t]+bar\" nil t)
|
|
561 (replace-match \"foobar\" nil nil))
|
5393
|
562 which will run faster and probably do exactly what you want."
|
2080
|
563 (or map (setq map query-replace-map))
|
16631
|
564 (and query-flag minibuffer-auto-raise
|
|
565 (raise-frame (window-frame (minibuffer-window))))
|
61
|
566 (let ((nocasify (not (and case-fold-search case-replace
|
|
567 (string-equal from-string
|
|
568 (downcase from-string)))))
|
|
569 (literal (not regexp-flag))
|
|
570 (search-function (if regexp-flag 're-search-forward 'search-forward))
|
|
571 (search-string from-string)
|
732
|
572 (real-match-data nil) ; the match data for the current match
|
61
|
573 (next-replacement nil)
|
|
574 (replacement-index 0)
|
|
575 (keep-going t)
|
|
576 (stack nil)
|
|
577 (next-rotate-count 0)
|
|
578 (replace-count 0)
|
18433
|
579 (nonempty-match nil)
|
|
580
|
|
581 ;; Data for the next match. If a cons, it has the same format as
|
|
582 ;; (match-data); otherwise it is t if a match is possible at point.
|
16725
|
583 (match-again t)
|
18433
|
584
|
7258
|
585 (message
|
|
586 (if query-flag
|
|
587 (substitute-command-keys
|
|
588 "Query replacing %s with %s: (\\<query-replace-map>\\[help] for help) "))))
|
61
|
589 (if (stringp replacements)
|
|
590 (setq next-replacement replacements)
|
|
591 (or repeat-count (setq repeat-count 1)))
|
|
592 (if delimited-flag
|
|
593 (setq search-function 're-search-forward
|
|
594 search-string (concat "\\b"
|
|
595 (if regexp-flag from-string
|
|
596 (regexp-quote from-string))
|
|
597 "\\b")))
|
|
598 (push-mark)
|
|
599 (undo-boundary)
|
5393
|
600 (unwind-protect
|
|
601 ;; Loop finding occurrences that perhaps should be replaced.
|
|
602 (while (and keep-going
|
|
603 (not (eobp))
|
18433
|
604 ;; Use the next match if it is already known;
|
|
605 ;; otherwise, search for a match after moving forward
|
|
606 ;; one char if progress is required.
|
|
607 (setq real-match-data
|
|
608 (if (consp match-again)
|
|
609 (progn (goto-char (nth 1 match-again))
|
|
610 match-again)
|
|
611 (and (or match-again
|
|
612 (progn
|
|
613 (forward-char 1)
|
|
614 (not (eobp))))
|
|
615 (funcall search-function search-string nil t)
|
|
616 ;; For speed, use only integers and
|
|
617 ;; reuse the list used last time.
|
|
618 (match-data t real-match-data)))))
|
732
|
619
|
18433
|
620 ;; Record whether the match is nonempty, to avoid an infinite loop
|
|
621 ;; repeatedly matching the same empty string.
|
|
622 (setq nonempty-match
|
|
623 (/= (nth 0 real-match-data) (nth 1 real-match-data)))
|
16725
|
624
|
18433
|
625 ;; If the match is empty, record that the next one can't be adjacent.
|
|
626 ;; Otherwise, if matching a regular expression, do the next
|
|
627 ;; match now, since the replacement for this match may
|
|
628 ;; affect whether the next match is adjacent to this one.
|
|
629 (setq match-again
|
|
630 (and nonempty-match
|
|
631 (or (not regexp-flag)
|
|
632 (and (looking-at search-string)
|
18443
393843d18bec
(perform-replace): When matching lookahead, use markers rather than
Paul Eggert <eggert@twinsun.com>
diff
changeset
|
633 (match-data)))))
|
18433
|
634
|
5393
|
635 ;; If time for a change, advance to next replacement string.
|
|
636 (if (and (listp replacements)
|
|
637 (= next-rotate-count replace-count))
|
|
638 (progn
|
|
639 (setq next-rotate-count
|
|
640 (+ next-rotate-count repeat-count))
|
|
641 (setq next-replacement (nth replacement-index replacements))
|
|
642 (setq replacement-index (% (1+ replacement-index) (length replacements)))))
|
|
643 (if (not query-flag)
|
|
644 (progn
|
16725
|
645 (store-match-data real-match-data)
|
5393
|
646 (replace-match next-replacement nocasify literal)
|
|
647 (setq replace-count (1+ replace-count)))
|
|
648 (undo-boundary)
|
|
649 (let (done replaced key def)
|
|
650 ;; Loop reading commands until one of them sets done,
|
|
651 ;; which means it has finished handling this occurrence.
|
|
652 (while (not done)
|
8664
|
653 (store-match-data real-match-data)
|
5393
|
654 (replace-highlight (match-beginning 0) (match-end 0))
|
10566
|
655 ;; Bind message-log-max so we don't fill up the message log
|
|
656 ;; with a bunch of identical messages.
|
|
657 (let ((message-log-max nil))
|
|
658 (message message from-string next-replacement))
|
5393
|
659 (setq key (read-event))
|
17933
|
660 ;; Necessary in case something happens during read-event
|
|
661 ;; that clobbers the match data.
|
|
662 (store-match-data real-match-data)
|
5393
|
663 (setq key (vector key))
|
|
664 (setq def (lookup-key map key))
|
|
665 ;; Restore the match data while we process the command.
|
|
666 (cond ((eq def 'help)
|
|
667 (with-output-to-temp-buffer "*Help*"
|
|
668 (princ
|
|
669 (concat "Query replacing "
|
|
670 (if regexp-flag "regexp " "")
|
|
671 from-string " with "
|
|
672 next-replacement ".\n\n"
|
|
673 (substitute-command-keys
|
9847
|
674 query-replace-help)))
|
|
675 (save-excursion
|
|
676 (set-buffer standard-output)
|
|
677 (help-mode))))
|
5393
|
678 ((eq def 'exit)
|
|
679 (setq keep-going nil)
|
|
680 (setq done t))
|
|
681 ((eq def 'backup)
|
5905
|
682 (if stack
|
|
683 (let ((elt (car stack)))
|
|
684 (goto-char (car elt))
|
|
685 (setq replaced (eq t (cdr elt)))
|
|
686 (or replaced
|
|
687 (store-match-data (cdr elt)))
|
|
688 (setq stack (cdr stack)))
|
|
689 (message "No previous match")
|
|
690 (ding 'no-terminate)
|
|
691 (sit-for 1)))
|
5393
|
692 ((eq def 'act)
|
|
693 (or replaced
|
16129
|
694 (progn
|
|
695 (replace-match next-replacement nocasify literal)
|
|
696 (setq replace-count (1+ replace-count))))
|
5393
|
697 (setq done t replaced t))
|
|
698 ((eq def 'act-and-exit)
|
|
699 (or replaced
|
16129
|
700 (progn
|
|
701 (replace-match next-replacement nocasify literal)
|
|
702 (setq replace-count (1+ replace-count))))
|
5393
|
703 (setq keep-going nil)
|
|
704 (setq done t replaced t))
|
|
705 ((eq def 'act-and-show)
|
|
706 (if (not replaced)
|
|
707 (progn
|
|
708 (replace-match next-replacement nocasify literal)
|
16129
|
709 (setq replace-count (1+ replace-count))
|
5393
|
710 (setq replaced t))))
|
|
711 ((eq def 'automatic)
|
|
712 (or replaced
|
16129
|
713 (progn
|
|
714 (replace-match next-replacement nocasify literal)
|
|
715 (setq replace-count (1+ replace-count))))
|
5393
|
716 (setq done t query-flag nil replaced t))
|
|
717 ((eq def 'skip)
|
|
718 (setq done t))
|
|
719 ((eq def 'recenter)
|
|
720 (recenter nil))
|
|
721 ((eq def 'edit)
|
|
722 (store-match-data
|
|
723 (prog1 (match-data)
|
16725
|
724 (save-excursion (recursive-edit))))
|
|
725 ;; Before we make the replacement,
|
|
726 ;; decide whether the search string
|
|
727 ;; can match again just after this match.
|
18433
|
728 (if (and regexp-flag nonempty-match)
|
|
729 (setq match-again (and (looking-at search-string)
|
18443
393843d18bec
(perform-replace): When matching lookahead, use markers rather than
Paul Eggert <eggert@twinsun.com>
diff
changeset
|
730 (match-data)))))
|
5393
|
731 ((eq def 'delete-and-edit)
|
|
732 (delete-region (match-beginning 0) (match-end 0))
|
|
733 (store-match-data
|
|
734 (prog1 (match-data)
|
|
735 (save-excursion (recursive-edit))))
|
|
736 (setq replaced t))
|
10057
|
737 ;; Note: we do not need to treat `exit-prefix'
|
|
738 ;; specially here, since we reread
|
|
739 ;; any unrecognized character.
|
5393
|
740 (t
|
10057
|
741 (setq this-command 'mode-exited)
|
5393
|
742 (setq keep-going nil)
|
|
743 (setq unread-command-events
|
|
744 (append (listify-key-sequence key)
|
|
745 unread-command-events))
|
|
746 (setq done t))))
|
|
747 ;; Record previous position for ^ when we move on.
|
|
748 ;; Change markers to numbers in the match data
|
|
749 ;; since lots of markers slow down editing.
|
|
750 (setq stack
|
|
751 (cons (cons (point)
|
16758
|
752 (or replaced (match-data t)))
|
18433
|
753 stack)))))
|
5393
|
754 (replace-dehighlight))
|
10157
|
755 (or unread-command-events
|
|
756 (message "Replaced %d occurrence%s"
|
|
757 replace-count
|
|
758 (if (= replace-count 1) "" "s")))
|
|
759 (and keep-going stack)))
|
61
|
760
|
17664
|
761 (defcustom query-replace-highlight nil
|
|
762 "*Non-nil means to highlight words during query replacement."
|
|
763 :type 'boolean
|
|
764 :group 'matching)
|
5393
|
765
|
|
766 (defvar replace-overlay nil)
|
|
767
|
|
768 (defun replace-dehighlight ()
|
|
769 (and replace-overlay
|
|
770 (progn
|
|
771 (delete-overlay replace-overlay)
|
|
772 (setq replace-overlay nil))))
|
|
773
|
|
774 (defun replace-highlight (start end)
|
|
775 (and query-replace-highlight
|
|
776 (progn
|
|
777 (or replace-overlay
|
|
778 (progn
|
|
779 (setq replace-overlay (make-overlay start end))
|
|
780 (overlay-put replace-overlay 'face
|
|
781 (if (internal-find-face 'query-replace)
|
|
782 'query-replace 'region))))
|
|
783 (move-overlay replace-overlay start end (current-buffer)))))
|
|
784
|
658
|
785 ;;; replace.el ends here
|