]> code.delx.au - gnu-emacs/blob - lisp/replace.el
(redraw_previous_char): New function.
[gnu-emacs] / lisp / replace.el
1 ;;; replace.el --- replace commands for Emacs.
2
3 ;; Copyright (C) 1985, 1986, 1987, 1992 Free Software Foundation, Inc.
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
9 ;; the Free Software Foundation; either version 2, or (at your option)
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
18 ;; along with GNU Emacs; see the file COPYING. If not, write to
19 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
20
21 ;;; Commentary:
22
23 ;; This package supplies the string and regular-expression replace functions
24 ;; documented in the Emacs user's manual.
25
26 ;;; Code:
27
28 (defconst case-replace t "\
29 *Non-nil means query-replace should preserve case in replacements.")
30
31 (defvar query-replace-history nil)
32
33 (defun query-replace-read-args (string)
34 (let (from to)
35 (setq from (read-from-minibuffer (format "%s: " string)
36 nil nil nil
37 'query-replace-history))
38 (setq to (read-from-minibuffer (format "%s %s with: " string from)
39 nil nil nil
40 'query-replace-history))
41 (list from to current-prefix-arg)))
42
43 (defun query-replace (from-string to-string &optional arg)
44 "Replace some occurrences of FROM-STRING with TO-STRING.
45 As each match is found, the user must type a character saying
46 what to do with it. For directions, type \\[help-command] at that time.
47
48 Preserves case in each replacement if case-replace and case-fold-search
49 are non-nil and FROM-STRING has no uppercase letters.
50 Third arg DELIMITED (prefix arg if interactive) non-nil means replace
51 only matches surrounded by word boundaries.
52
53 To customize possible responses, change the \"bindings\" in `query-replace-map'."
54 (interactive (query-replace-read-args "Query replace"))
55 (perform-replace from-string to-string t nil arg)
56 (or unread-command-events (message "Done")))
57 (define-key esc-map "%" 'query-replace)
58
59 (defun query-replace-regexp (regexp to-string &optional arg)
60 "Replace some things after point matching REGEXP with TO-STRING.
61 As each match is found, the user must type a character saying
62 what to do with it. For directions, type \\[help-command] at that time.
63
64 Preserves case in each replacement if case-replace and case-fold-search
65 are non-nil and REGEXP has no uppercase letters.
66 Third arg DELIMITED (prefix arg if interactive) non-nil means replace
67 only matches surrounded by word boundaries.
68 In TO-STRING, \\& means insert what matched REGEXP,
69 and \\=\\<n> means insert what matched <n>th \\(...\\) in REGEXP."
70 (interactive (query-replace-read-args "Query replace regexp"))
71 (perform-replace regexp to-string t t arg)
72 (or unread-command-events (message "Done")))
73
74 (defun map-query-replace-regexp (regexp to-strings &optional arg)
75 "Replace some matches for REGEXP with various strings, in rotation.
76 The second argument TO-STRINGS contains the replacement strings, separated
77 by spaces. This command works like `query-replace-regexp' except
78 that each successive replacement uses the next successive replacement string,
79 wrapping around from the last such string to the first.
80
81 Non-interactively, TO-STRINGS may be a list of replacement strings.
82
83 A prefix argument N says to use each replacement string N times
84 before rotating to the next."
85 (interactive
86 (let (from to)
87 (setq from (read-from-minibuffer "Map query replace (regexp): "
88 nil nil nil
89 'query-replace-history))
90 (setq to (read-from-minibuffer
91 (format "Query replace %s with (space-separated strings): "
92 from)
93 nil nil nil
94 'query-replace-history))
95 (list from to current-prefix-arg)))
96 (let (replacements)
97 (if (listp to-strings)
98 (setq replacements to-strings)
99 (while (/= (length to-strings) 0)
100 (if (string-match " " to-strings)
101 (setq replacements
102 (append replacements
103 (list (substring to-strings 0
104 (string-match " " to-strings))))
105 to-strings (substring to-strings
106 (1+ (string-match " " to-strings))))
107 (setq replacements (append replacements (list to-strings))
108 to-strings ""))))
109 (perform-replace regexp replacements t t nil arg))
110 (or unread-command-events (message "Done")))
111
112 (defun replace-string (from-string to-string &optional delimited)
113 "Replace occurrences of FROM-STRING with TO-STRING.
114 Preserve case in each match if `case-replace' and `case-fold-search'
115 are non-nil and FROM-STRING has no uppercase letters.
116 Third arg DELIMITED (prefix arg if interactive) non-nil means replace
117 only matches surrounded by word boundaries.
118
119 This function is usually the wrong thing to use in a Lisp program.
120 What you probably want is a loop like this:
121 (while (search-forward OLD-STRING nil t)
122 (replace-match REPLACEMENT nil t))
123 which will run faster and will not set the mark or print anything."
124 (interactive (query-replace-read-args "Replace string"))
125 (perform-replace from-string to-string nil nil delimited)
126 (or unread-command-events (message "Done")))
127
128 (defun replace-regexp (regexp to-string &optional delimited)
129 "Replace things after point matching REGEXP with TO-STRING.
130 Preserve case in each match if case-replace and case-fold-search
131 are non-nil and REGEXP has no uppercase letters.
132 Third arg DELIMITED (prefix arg if interactive) non-nil means replace
133 only matches surrounded by word boundaries.
134 In TO-STRING, \\& means insert what matched REGEXP,
135 and \\=\\<n> means insert what matched <n>th \\(...\\) in REGEXP.
136
137 This function is usually the wrong thing to use in a Lisp program.
138 What you probably want is a loop like this:
139 (while (re-search-forward REGEXP nil t)
140 (replace-match REPLACEMENT nil nil))
141 which will run faster and will not set the mark or print anything."
142 (interactive (query-replace-read-args "Replace regexp"))
143 (perform-replace regexp to-string nil t delimited)
144 (or unread-command-events (message "Done")))
145 \f
146 (defvar regexp-history nil
147 "History list for some commands that read regular expressions.")
148
149 (defalias 'delete-non-matching-lines 'keep-lines)
150 (defun keep-lines (regexp)
151 "Delete all lines except those containing matches for REGEXP.
152 A match split across lines preserves all the lines it lies in.
153 Applies to all lines after point."
154 (interactive (list (read-from-minibuffer
155 "Keep lines (containing match for regexp): "
156 nil nil nil 'regexp-history)))
157 (save-excursion
158 (or (bolp) (forward-line 1))
159 (let ((start (point)))
160 (while (not (eobp))
161 ;; Start is first char not preserved by previous match.
162 (if (not (re-search-forward regexp nil 'move))
163 (delete-region start (point-max))
164 (let ((end (save-excursion (goto-char (match-beginning 0))
165 (beginning-of-line)
166 (point))))
167 ;; Now end is first char preserved by the new match.
168 (if (< start end)
169 (delete-region start end))))
170 (setq start (save-excursion (forward-line 1)
171 (point)))
172 ;; If the match was empty, avoid matching again at same place.
173 (and (not (eobp)) (= (match-beginning 0) (match-end 0))
174 (forward-char 1))))))
175
176 (defalias 'delete-matching-lines 'flush-lines)
177 (defun flush-lines (regexp)
178 "Delete lines containing matches for REGEXP.
179 If a match is split across lines, all the lines it lies in are deleted.
180 Applies to lines after point."
181 (interactive (list (read-from-minibuffer
182 "Flush lines (containing match for regexp): "
183 nil nil nil 'regexp-history)))
184 (save-excursion
185 (while (and (not (eobp))
186 (re-search-forward regexp nil t))
187 (delete-region (save-excursion (goto-char (match-beginning 0))
188 (beginning-of-line)
189 (point))
190 (progn (forward-line 1) (point))))))
191
192 (defalias 'count-matches 'how-many)
193 (defun how-many (regexp)
194 "Print number of matches for REGEXP following point."
195 (interactive (list (read-from-minibuffer
196 "How many matches for (regexp): "
197 nil nil nil 'regexp-history)))
198 (let ((count 0) opoint)
199 (save-excursion
200 (while (and (not (eobp))
201 (progn (setq opoint (point))
202 (re-search-forward regexp nil t)))
203 (if (= opoint (point))
204 (forward-char 1)
205 (setq count (1+ count))))
206 (message "%d occurrences" count))))
207 \f
208 (defvar occur-mode-map ())
209 (if occur-mode-map
210 ()
211 (setq occur-mode-map (make-sparse-keymap))
212 (define-key occur-mode-map "\C-c\C-c" 'occur-mode-goto-occurrence))
213
214 (defvar occur-buffer nil)
215 (defvar occur-nlines nil)
216 (defvar occur-pos-list nil)
217
218 (defun occur-mode ()
219 "Major mode for output from \\[occur].
220 Move point to one of the occurrences in this buffer,
221 then use \\[occur-mode-goto-occurrence] to go to the same occurrence
222 in the buffer that the occurrences were found in.
223 \\{occur-mode-map}"
224 (kill-all-local-variables)
225 (use-local-map occur-mode-map)
226 (setq major-mode 'occur-mode)
227 (setq mode-name "Occur")
228 (make-local-variable 'occur-buffer)
229 (make-local-variable 'occur-nlines)
230 (make-local-variable 'occur-pos-list))
231
232 (defun occur-mode-goto-occurrence ()
233 "Go to the line this occurrence was found in, in the buffer it was found in."
234 (interactive)
235 (if (or (null occur-buffer)
236 (null (buffer-name occur-buffer)))
237 (progn
238 (setq occur-buffer nil
239 occur-pos-list nil)
240 (error "Buffer in which occurrences were found is deleted")))
241 (let* ((occur-number (save-excursion
242 (beginning-of-line)
243 (/ (1- (count-lines (point-min)
244 (save-excursion
245 (beginning-of-line)
246 (point))))
247 (cond ((< occur-nlines 0)
248 (- 2 occur-nlines))
249 ((> occur-nlines 0)
250 (+ 2 (* 2 occur-nlines)))
251 (t 1)))))
252 (pos (nth occur-number occur-pos-list)))
253 (pop-to-buffer occur-buffer)
254 (goto-char (marker-position pos))))
255 \f
256 (defvar list-matching-lines-default-context-lines 0
257 "*Default number of context lines to include around a `list-matching-lines'
258 match. A negative number means to include that many lines before the match.
259 A positive number means to include that many lines both before and after.")
260
261 (defalias 'list-matching-lines 'occur)
262
263 (defun occur (regexp &optional nlines)
264 "Show all lines in the current buffer containing a match for REGEXP.
265
266 If a match spreads across multiple lines, all those lines are shown.
267
268 Each line is displayed with NLINES lines before and after, or -NLINES
269 before if NLINES is negative.
270 NLINES defaults to `list-matching-lines-default-context-lines'.
271 Interactively it is the prefix arg.
272
273 The lines are shown in a buffer named `*Occur*'.
274 It serves as a menu to find any of the occurrences in this buffer.
275 \\[describe-mode] in that buffer will explain how."
276 (interactive (list (let* ((default (car regexp-history))
277 (input
278 (read-from-minibuffer
279 (if default
280 (format "List lines matching regexp (default `%s'): " default)
281 "List lines matching regexp: ")
282 nil nil nil
283 'regexp-history)))
284 (if (> (length input) 0) input
285 (setcar regexp-history default)))
286 current-prefix-arg))
287 (setq nlines (if nlines (prefix-numeric-value nlines)
288 list-matching-lines-default-context-lines))
289 (let ((first t)
290 (buffer (current-buffer))
291 (linenum 1)
292 (prevpos (point-min))
293 (final-context-start (make-marker)))
294 ;;; (save-excursion
295 ;;; (beginning-of-line)
296 ;;; (setq linenum (1+ (count-lines (point-min) (point))))
297 ;;; (setq prevpos (point)))
298 (with-output-to-temp-buffer "*Occur*"
299 (save-excursion
300 (set-buffer standard-output)
301 (insert "Lines matching ")
302 (prin1 regexp)
303 (insert " in buffer " (buffer-name buffer) ?. ?\n)
304 (occur-mode)
305 (setq occur-buffer buffer)
306 (setq occur-nlines nlines)
307 (setq occur-pos-list ()))
308 (if (eq buffer standard-output)
309 (goto-char (point-max)))
310 (save-excursion
311 (beginning-of-buffer)
312 ;; Find next match, but give up if prev match was at end of buffer.
313 (while (and (not (= prevpos (point-max)))
314 (re-search-forward regexp nil t))
315 (goto-char (match-beginning 0))
316 (beginning-of-line)
317 (save-match-data
318 (setq linenum (+ linenum (count-lines prevpos (point)))))
319 (setq prevpos (point))
320 (goto-char (match-end 0))
321 (let* ((start (save-excursion
322 (goto-char (match-beginning 0))
323 (forward-line (if (< nlines 0) nlines (- nlines)))
324 (point)))
325 (end (save-excursion
326 (goto-char (match-end 0))
327 (if (> nlines 0)
328 (forward-line (1+ nlines))
329 (forward-line 1))
330 (point)))
331 (tag (format "%3d" linenum))
332 (empty (make-string (length tag) ?\ ))
333 tem)
334 (save-excursion
335 (setq tem (make-marker))
336 (set-marker tem (point))
337 (set-buffer standard-output)
338 (setq occur-pos-list (cons tem occur-pos-list))
339 (or first (zerop nlines)
340 (insert "--------\n"))
341 (setq first nil)
342 (insert-buffer-substring buffer start end)
343 (backward-char (- end start))
344 (setq tem nlines)
345 (while (> tem 0)
346 (insert empty ?:)
347 (forward-line 1)
348 (setq tem (1- tem)))
349 (let ((this-linenum linenum))
350 (set-marker final-context-start
351 (+ (point) (- (match-end 0) (match-beginning 0))))
352 (while (< (point) final-context-start)
353 (if (null tag)
354 (setq tag (format "%3d" this-linenum)))
355 (insert tag ?:)
356 (setq tag nil)
357 (forward-line 1)
358 (setq this-linenum (1+ this-linenum))))
359 (while (< tem nlines)
360 (insert empty ?:)
361 (forward-line 1)
362 (setq tem (1+ tem))))
363 (forward-line 1)))
364 (set-buffer standard-output)
365 ;; Put positions in increasing order to go with buffer.
366 (setq occur-pos-list (nreverse occur-pos-list))
367 (if (interactive-p)
368 (message "%d matching lines." (length occur-pos-list)))))))
369 \f
370 ;; It would be nice to use \\[...], but there is no reasonable way
371 ;; to make that display both SPC and Y.
372 (defconst query-replace-help
373 "Type Space or `y' to replace one match, Delete or `n' to skip to next,
374 ESC or `q' to exit, Period to replace one match and exit,
375 Comma to replace but not move point immediately,
376 C-r to enter recursive edit (\\[exit-recursive-edit] to get out again),
377 C-w to delete match and recursive edit,
378 C-l to clear the screen, redisplay, and offer same replacement again,
379 ! to replace all remaining matches with no more questions,
380 ^ to move point back to previous match."
381 "Help message while in query-replace")
382
383 (defvar query-replace-map (make-sparse-keymap)
384 "Keymap that defines the responses to questions in `query-replace'.
385 The \"bindings\" in this map are not commands; they are answers.
386 The valid answers include `act', `skip', `act-and-show',
387 `exit', `act-and-exit', `edit', `delete-and-edit', `recenter',
388 `automatic', `backup', and `help'.")
389
390 (define-key query-replace-map " " 'act)
391 (define-key query-replace-map "\d" 'skip)
392 (define-key query-replace-map [delete] 'skip)
393 (define-key query-replace-map [backspace] 'skip)
394 (define-key query-replace-map "y" 'act)
395 (define-key query-replace-map "n" 'skip)
396 (define-key query-replace-map "," 'act-and-show)
397 (define-key query-replace-map "\e" 'exit)
398 (define-key query-replace-map [escape] 'exit)
399 (define-key query-replace-map "q" 'exit)
400 (define-key query-replace-map "\r" 'exit)
401 (define-key query-replace-map [return] 'exit)
402 (define-key query-replace-map "." 'act-and-exit)
403 (define-key query-replace-map "\C-r" 'edit)
404 (define-key query-replace-map "\C-w" 'delete-and-edit)
405 (define-key query-replace-map "\C-l" 'recenter)
406 (define-key query-replace-map "!" 'automatic)
407 (define-key query-replace-map "^" 'backup)
408 (define-key query-replace-map "\C-h" 'help)
409 (define-key query-replace-map "?" 'help)
410 (define-key query-replace-map "\C-g" 'quit)
411 (define-key query-replace-map "\C-]" 'quit)
412
413 (defun perform-replace (from-string replacements
414 query-flag regexp-flag delimited-flag
415 &optional repeat-count map)
416 "Subroutine of `query-replace'. Its complexity handles interactive queries.
417 Don't use this in your own program unless you want to query and set the mark
418 just as `query-replace' does. Instead, write a simple loop like this:
419 (while (re-search-forward \"foo[ \t]+bar\" nil t)
420 (replace-match \"foobar\" nil nil))
421 which will run faster and do exactly what you probably want."
422 (or map (setq map query-replace-map))
423 (let ((nocasify (not (and case-fold-search case-replace
424 (string-equal from-string
425 (downcase from-string)))))
426 (literal (not regexp-flag))
427 (search-function (if regexp-flag 're-search-forward 'search-forward))
428 (search-string from-string)
429 (real-match-data nil) ; the match data for the current match
430 (next-replacement nil)
431 (replacement-index 0)
432 (keep-going t)
433 (stack nil)
434 (next-rotate-count 0)
435 (replace-count 0)
436 (lastrepl nil) ;Position after last match considered.
437 (match-again t))
438 (if (stringp replacements)
439 (setq next-replacement replacements)
440 (or repeat-count (setq repeat-count 1)))
441 (if delimited-flag
442 (setq search-function 're-search-forward
443 search-string (concat "\\b"
444 (if regexp-flag from-string
445 (regexp-quote from-string))
446 "\\b")))
447 (push-mark)
448 (undo-boundary)
449 ;; Loop finding occurrences that perhaps should be replaced.
450 (while (and keep-going
451 (not (eobp))
452 (funcall search-function search-string nil t)
453 ;; If the search string matches immediately after
454 ;; the previous match, but it did not match there
455 ;; before the replacement was done, ignore the match.
456 (if (or (eq lastrepl (point))
457 (and regexp-flag
458 (eq lastrepl (match-beginning 0))
459 (not match-again)))
460 (if (eobp)
461 nil
462 ;; Don't replace the null string
463 ;; right after end of previous replacement.
464 (forward-char 1)
465 (funcall search-function search-string nil t))
466 t))
467
468 ;; Save the data associated with the real match.
469 (setq real-match-data (match-data))
470
471 ;; Before we make the replacement, decide whether the search string
472 ;; can match again just after this match.
473 (if regexp-flag
474 (setq match-again (looking-at search-string)))
475 ;; If time for a change, advance to next replacement string.
476 (if (and (listp replacements)
477 (= next-rotate-count replace-count))
478 (progn
479 (setq next-rotate-count
480 (+ next-rotate-count repeat-count))
481 (setq next-replacement (nth replacement-index replacements))
482 (setq replacement-index (% (1+ replacement-index) (length replacements)))))
483 (if (not query-flag)
484 (progn
485 (store-match-data real-match-data)
486 (replace-match next-replacement nocasify literal)
487 (setq replace-count (1+ replace-count)))
488 (undo-boundary)
489 (let (done replaced key def)
490 ;; Loop reading commands until one of them sets done,
491 ;; which means it has finished handling this occurrence.
492 (while (not done)
493 (message "Query replacing %s with %s: "
494 from-string next-replacement)
495 (setq key (read-event))
496 (setq key (vector key))
497 (setq def (lookup-key map key))
498 ;; Restore the match data while we process the command.
499 (store-match-data real-match-data)
500 (cond ((eq def 'help)
501 (with-output-to-temp-buffer "*Help*"
502 (princ
503 (concat "Query replacing "
504 (if regexp-flag "regexp " "")
505 from-string " with "
506 next-replacement ".\n\n"
507 (substitute-command-keys
508 query-replace-help)))))
509 ((eq def 'exit)
510 (setq keep-going nil)
511 (setq done t))
512 ((eq def 'backup)
513 (let ((elt (car stack)))
514 (goto-char (car elt))
515 (setq replaced (eq t (cdr elt)))
516 (or replaced
517 (store-match-data (cdr elt)))
518 (setq stack (cdr stack))))
519 ((eq def 'act)
520 (or replaced
521 (replace-match next-replacement nocasify literal))
522 (setq done t replaced t))
523 ((eq def 'act-and-exit)
524 (or replaced
525 (replace-match next-replacement nocasify literal))
526 (setq keep-going nil)
527 (setq done t replaced t))
528 ((eq def 'act-and-show)
529 (if (not replaced)
530 (progn
531 (replace-match next-replacement nocasify literal)
532 (setq replaced t))))
533 ((eq def 'automatic)
534 (or replaced
535 (replace-match next-replacement nocasify literal))
536 (setq done t query-flag nil replaced t))
537 ((eq def 'skip)
538 (setq done t))
539 ((eq def 'recenter)
540 (recenter nil))
541 ((eq def 'edit)
542 (store-match-data
543 (prog1 (match-data)
544 (save-excursion (recursive-edit))))
545 ;; Before we make the replacement,
546 ;; decide whether the search string
547 ;; can match again just after this match.
548 (if regexp-flag
549 (setq match-again (looking-at search-string))))
550 ((eq def 'delete-and-edit)
551 (delete-region (match-beginning 0) (match-end 0))
552 (store-match-data
553 (prog1 (match-data)
554 (save-excursion (recursive-edit))))
555 (setq replaced t))
556 (t
557 (setq keep-going nil)
558 (setq unread-command-events
559 (append (listify-key-sequence key)
560 unread-command-events))
561 (setq done t))))
562 ;; Record previous position for ^ when we move on.
563 ;; Change markers to numbers in the match data
564 ;; since lots of markers slow down editing.
565 (setq stack
566 (cons (cons (point)
567 (or replaced
568 (mapcar
569 (function (lambda (elt)
570 (and elt
571 (marker-position elt))))
572 (match-data))))
573 stack))
574 (if replaced (setq replace-count (1+ replace-count)))))
575 (setq lastrepl (point)))
576 (and keep-going stack)))
577
578 ;;; replace.el ends here