1992-05-30 21:11:25 +00:00
|
|
|
|
;;; replace.el --- replace commands for Emacs.
|
|
|
|
|
|
1998-01-03 07:06:18 +00:00
|
|
|
|
;; Copyright (C) 1985, 86, 87, 92, 94, 96, 1997 Free Software Foundation, Inc.
|
1992-07-22 04:22:42 +00:00
|
|
|
|
|
1990-05-11 20:07:49 +00:00
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
|
|
;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
1992-06-30 13:54:21 +00:00
|
|
|
|
;; the Free Software Foundation; either version 2, or (at your option)
|
1990-05-11 20:07:49 +00:00
|
|
|
|
;; any later version.
|
|
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
1996-01-14 07:34:30 +00:00
|
|
|
|
;; along with GNU Emacs; see the file COPYING. If not, write to the
|
|
|
|
|
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
|
;; Boston, MA 02111-1307, USA.
|
1990-05-11 20:07:49 +00:00
|
|
|
|
|
1993-03-22 16:53:22 +00:00
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
|
|
;; This package supplies the string and regular-expression replace functions
|
|
|
|
|
;; documented in the Emacs user's manual.
|
|
|
|
|
|
1992-07-15 22:39:32 +00:00
|
|
|
|
;;; Code:
|
1990-05-11 20:07:49 +00:00
|
|
|
|
|
1997-05-05 15:00:53 +00:00
|
|
|
|
(defcustom case-replace t
|
|
|
|
|
"*Non-nil means query-replace should preserve case in replacements."
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'matching)
|
1991-05-11 18:07:11 +00:00
|
|
|
|
|
1992-07-24 08:17:31 +00:00
|
|
|
|
(defvar query-replace-history nil)
|
|
|
|
|
|
1994-09-20 04:26:12 +00:00
|
|
|
|
(defvar query-replace-interactive nil
|
|
|
|
|
"Non-nil means `query-replace' uses the last search string.
|
|
|
|
|
That becomes the \"string to replace\".")
|
|
|
|
|
|
1998-01-30 23:34:50 +00:00
|
|
|
|
(defcustom query-replace-from-history-variable 'query-replace-history
|
|
|
|
|
"History list to use for the FROM argument of query-replace commands.
|
|
|
|
|
The value of this variable should be a symbol; that symbol
|
|
|
|
|
is used as a variable to hold a history list for the strings
|
|
|
|
|
or patterns to be replaced."
|
|
|
|
|
:group 'matching
|
1998-04-20 02:34:53 +00:00
|
|
|
|
:type 'symbol
|
|
|
|
|
:version "20.3")
|
1998-01-30 23:34:50 +00:00
|
|
|
|
|
|
|
|
|
(defcustom query-replace-to-history-variable 'query-replace-history
|
|
|
|
|
"History list to use for the TO argument of query-replace commands.
|
|
|
|
|
The value of this variable should be a symbol; that symbol
|
|
|
|
|
is used as a variable to hold a history list for replacement
|
|
|
|
|
strings or patterns."
|
|
|
|
|
:group 'matching
|
1998-04-20 02:34:53 +00:00
|
|
|
|
:type 'symbol
|
|
|
|
|
:version "20.3")
|
1998-01-30 23:34:50 +00:00
|
|
|
|
|
1994-09-20 04:26:12 +00:00
|
|
|
|
(defun query-replace-read-args (string regexp-flag)
|
1992-07-24 08:17:31 +00:00
|
|
|
|
(let (from to)
|
1994-09-20 04:26:12 +00:00
|
|
|
|
(if query-replace-interactive
|
|
|
|
|
(setq from (car (if regexp-flag regexp-search-ring search-ring)))
|
|
|
|
|
(setq from (read-from-minibuffer (format "%s: " string)
|
|
|
|
|
nil nil nil
|
1998-01-30 23:34:50 +00:00
|
|
|
|
query-replace-from-history-variable
|
|
|
|
|
nil t)))
|
1992-07-24 08:17:31 +00:00
|
|
|
|
(setq to (read-from-minibuffer (format "%s %s with: " string from)
|
|
|
|
|
nil nil nil
|
1998-02-08 07:34:28 +00:00
|
|
|
|
query-replace-to-history-variable from t))
|
1992-07-24 08:17:31 +00:00
|
|
|
|
(list from to current-prefix-arg)))
|
|
|
|
|
|
1991-05-10 19:36:23 +00:00
|
|
|
|
(defun query-replace (from-string to-string &optional arg)
|
|
|
|
|
"Replace some occurrences of FROM-STRING with TO-STRING.
|
|
|
|
|
As each match is found, the user must type a character saying
|
|
|
|
|
what to do with it. For directions, type \\[help-command] at that time.
|
|
|
|
|
|
1997-11-11 03:26:55 +00:00
|
|
|
|
In Transient Mark mode, if the mark is active, operate on the contents
|
|
|
|
|
of the region. Otherwise, operate from point to the end of the buffer.
|
|
|
|
|
|
1994-09-20 04:26:12 +00:00
|
|
|
|
If `query-replace-interactive' is non-nil, the last incremental search
|
|
|
|
|
string is used as FROM-STRING--you don't have to specify it with the
|
|
|
|
|
minibuffer.
|
|
|
|
|
|
1998-10-14 12:47:18 +00:00
|
|
|
|
Replacement transfers the case of the old text to the new text,
|
|
|
|
|
if `case-replace' and `case-fold-search'
|
1991-05-10 19:36:23 +00:00
|
|
|
|
are non-nil and FROM-STRING has no uppercase letters.
|
1994-12-04 12:52:52 +00:00
|
|
|
|
\(Preserving case means that if the string matched is all caps, or capitalized,
|
|
|
|
|
then its replacement is upcased or capitalized.)
|
|
|
|
|
|
1994-04-06 21:19:48 +00:00
|
|
|
|
Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace
|
1993-03-09 19:51:29 +00:00
|
|
|
|
only matches surrounded by word boundaries.
|
|
|
|
|
|
|
|
|
|
To customize possible responses, change the \"bindings\" in `query-replace-map'."
|
1994-09-20 04:26:12 +00:00
|
|
|
|
(interactive (query-replace-read-args "Query replace" nil))
|
1994-12-14 03:44:51 +00:00
|
|
|
|
(perform-replace from-string to-string t nil arg))
|
1997-11-11 03:26:55 +00:00
|
|
|
|
|
1991-05-13 22:05:10 +00:00
|
|
|
|
(define-key esc-map "%" 'query-replace)
|
1991-05-10 19:36:23 +00:00
|
|
|
|
|
|
|
|
|
(defun query-replace-regexp (regexp to-string &optional arg)
|
|
|
|
|
"Replace some things after point matching REGEXP with TO-STRING.
|
|
|
|
|
As each match is found, the user must type a character saying
|
|
|
|
|
what to do with it. For directions, type \\[help-command] at that time.
|
|
|
|
|
|
1997-11-11 03:26:55 +00:00
|
|
|
|
In Transient Mark mode, if the mark is active, operate on the contents
|
|
|
|
|
of the region. Otherwise, operate from point to the end of the buffer.
|
|
|
|
|
|
1994-09-20 04:26:12 +00:00
|
|
|
|
If `query-replace-interactive' is non-nil, the last incremental search
|
|
|
|
|
regexp is used as REGEXP--you don't have to specify it with the
|
|
|
|
|
minibuffer.
|
|
|
|
|
|
1994-04-06 21:19:48 +00:00
|
|
|
|
Preserves case in each replacement if `case-replace' and `case-fold-search'
|
1991-05-10 19:36:23 +00:00
|
|
|
|
are non-nil and REGEXP has no uppercase letters.
|
1994-04-06 21:19:48 +00:00
|
|
|
|
Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace
|
1991-05-10 19:36:23 +00:00
|
|
|
|
only matches surrounded by word boundaries.
|
1994-04-06 21:19:48 +00:00
|
|
|
|
In TO-STRING, `\\&' stands for whatever matched the whole of REGEXP,
|
|
|
|
|
and `\\=\\N' (where N is a digit) stands for
|
|
|
|
|
whatever what matched the Nth `\\(...\\)' in REGEXP."
|
1994-09-20 04:26:12 +00:00
|
|
|
|
(interactive (query-replace-read-args "Query replace regexp" t))
|
1994-12-14 03:44:51 +00:00
|
|
|
|
(perform-replace regexp to-string t t arg))
|
1998-06-04 06:57:32 +00:00
|
|
|
|
(define-key esc-map [?\C-%] 'query-replace-regexp)
|
1991-05-10 19:36:23 +00:00
|
|
|
|
|
|
|
|
|
(defun map-query-replace-regexp (regexp to-strings &optional arg)
|
|
|
|
|
"Replace some matches for REGEXP with various strings, in rotation.
|
|
|
|
|
The second argument TO-STRINGS contains the replacement strings, separated
|
|
|
|
|
by spaces. This command works like `query-replace-regexp' except
|
|
|
|
|
that each successive replacement uses the next successive replacement string,
|
|
|
|
|
wrapping around from the last such string to the first.
|
|
|
|
|
|
1997-11-11 03:26:55 +00:00
|
|
|
|
In Transient Mark mode, if the mark is active, operate on the contents
|
|
|
|
|
of the region. Otherwise, operate from point to the end of the buffer.
|
|
|
|
|
|
1991-05-10 19:36:23 +00:00
|
|
|
|
Non-interactively, TO-STRINGS may be a list of replacement strings.
|
|
|
|
|
|
1994-09-20 04:26:12 +00:00
|
|
|
|
If `query-replace-interactive' is non-nil, the last incremental search
|
|
|
|
|
regexp is used as REGEXP--you don't have to specify it with the minibuffer.
|
|
|
|
|
|
1991-05-10 19:36:23 +00:00
|
|
|
|
A prefix argument N says to use each replacement string N times
|
|
|
|
|
before rotating to the next."
|
1992-07-24 08:17:31 +00:00
|
|
|
|
(interactive
|
|
|
|
|
(let (from to)
|
1994-09-20 04:26:12 +00:00
|
|
|
|
(setq from (if query-replace-interactive
|
|
|
|
|
(car regexp-search-ring)
|
|
|
|
|
(read-from-minibuffer "Map query replace (regexp): "
|
|
|
|
|
nil nil nil
|
1997-08-26 11:45:49 +00:00
|
|
|
|
'query-replace-history nil t)))
|
1992-07-24 08:17:31 +00:00
|
|
|
|
(setq to (read-from-minibuffer
|
|
|
|
|
(format "Query replace %s with (space-separated strings): "
|
|
|
|
|
from)
|
|
|
|
|
nil nil nil
|
1998-02-08 07:34:28 +00:00
|
|
|
|
'query-replace-history from t))
|
1992-07-24 08:17:31 +00:00
|
|
|
|
(list from to current-prefix-arg)))
|
1991-05-10 19:36:23 +00:00
|
|
|
|
(let (replacements)
|
|
|
|
|
(if (listp to-strings)
|
|
|
|
|
(setq replacements to-strings)
|
|
|
|
|
(while (/= (length to-strings) 0)
|
|
|
|
|
(if (string-match " " to-strings)
|
|
|
|
|
(setq replacements
|
|
|
|
|
(append replacements
|
|
|
|
|
(list (substring to-strings 0
|
|
|
|
|
(string-match " " to-strings))))
|
|
|
|
|
to-strings (substring to-strings
|
|
|
|
|
(1+ (string-match " " to-strings))))
|
|
|
|
|
(setq replacements (append replacements (list to-strings))
|
|
|
|
|
to-strings ""))))
|
1994-12-14 03:44:51 +00:00
|
|
|
|
(perform-replace regexp replacements t t nil arg)))
|
1991-05-10 19:36:23 +00:00
|
|
|
|
|
|
|
|
|
(defun replace-string (from-string to-string &optional delimited)
|
|
|
|
|
"Replace occurrences of FROM-STRING with TO-STRING.
|
|
|
|
|
Preserve case in each match if `case-replace' and `case-fold-search'
|
|
|
|
|
are non-nil and FROM-STRING has no uppercase letters.
|
1994-12-04 12:52:52 +00:00
|
|
|
|
\(Preserving case means that if the string matched is all caps, or capitalized,
|
|
|
|
|
then its replacement is upcased or capitalized.)
|
|
|
|
|
|
1997-11-11 03:26:55 +00:00
|
|
|
|
In Transient Mark mode, if the mark is active, operate on the contents
|
|
|
|
|
of the region. Otherwise, operate from point to the end of the buffer.
|
|
|
|
|
|
1994-04-06 21:19:48 +00:00
|
|
|
|
Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace
|
1991-05-10 19:36:23 +00:00
|
|
|
|
only matches surrounded by word boundaries.
|
|
|
|
|
|
1994-09-20 04:26:12 +00:00
|
|
|
|
If `query-replace-interactive' is non-nil, the last incremental search
|
|
|
|
|
string is used as FROM-STRING--you don't have to specify it with the
|
|
|
|
|
minibuffer.
|
|
|
|
|
|
1991-05-10 19:36:23 +00:00
|
|
|
|
This function is usually the wrong thing to use in a Lisp program.
|
|
|
|
|
What you probably want is a loop like this:
|
1994-04-06 21:19:48 +00:00
|
|
|
|
(while (search-forward FROM-STRING nil t)
|
|
|
|
|
(replace-match TO-STRING nil t))
|
1997-03-22 03:51:36 +00:00
|
|
|
|
which will run faster and will not set the mark or print anything.
|
|
|
|
|
\(You may need a more complex loop if FROM-STRING can match the null string
|
|
|
|
|
and TO-STRING is also null.)"
|
1994-09-20 04:26:12 +00:00
|
|
|
|
(interactive (query-replace-read-args "Replace string" nil))
|
1994-12-14 03:44:51 +00:00
|
|
|
|
(perform-replace from-string to-string nil nil delimited))
|
1991-05-10 19:36:23 +00:00
|
|
|
|
|
|
|
|
|
(defun replace-regexp (regexp to-string &optional delimited)
|
|
|
|
|
"Replace things after point matching REGEXP with TO-STRING.
|
1994-04-06 21:19:48 +00:00
|
|
|
|
Preserve case in each match if `case-replace' and `case-fold-search'
|
1991-05-10 19:36:23 +00:00
|
|
|
|
are non-nil and REGEXP has no uppercase letters.
|
1994-04-06 21:19:48 +00:00
|
|
|
|
Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace
|
1991-05-10 19:36:23 +00:00
|
|
|
|
only matches surrounded by word boundaries.
|
1994-04-06 21:19:48 +00:00
|
|
|
|
In TO-STRING, `\\&' stands for whatever matched the whole of REGEXP,
|
|
|
|
|
and `\\=\\N' (where N is a digit) stands for
|
1994-04-07 04:37:03 +00:00
|
|
|
|
whatever what matched the Nth `\\(...\\)' in REGEXP.
|
1991-05-10 19:36:23 +00:00
|
|
|
|
|
1997-11-11 03:26:55 +00:00
|
|
|
|
In Transient Mark mode, if the mark is active, operate on the contents
|
|
|
|
|
of the region. Otherwise, operate from point to the end of the buffer.
|
|
|
|
|
|
1994-09-20 04:26:12 +00:00
|
|
|
|
If `query-replace-interactive' is non-nil, the last incremental search
|
|
|
|
|
regexp is used as REGEXP--you don't have to specify it with the minibuffer.
|
|
|
|
|
|
1991-05-10 19:36:23 +00:00
|
|
|
|
This function is usually the wrong thing to use in a Lisp program.
|
|
|
|
|
What you probably want is a loop like this:
|
|
|
|
|
(while (re-search-forward REGEXP nil t)
|
1994-04-06 21:19:48 +00:00
|
|
|
|
(replace-match TO-STRING nil nil))
|
1991-05-10 19:36:23 +00:00
|
|
|
|
which will run faster and will not set the mark or print anything."
|
1994-09-20 04:26:12 +00:00
|
|
|
|
(interactive (query-replace-read-args "Replace regexp" t))
|
1994-12-14 03:44:51 +00:00
|
|
|
|
(perform-replace regexp to-string nil t delimited))
|
1993-03-28 20:17:39 +00:00
|
|
|
|
|
|
|
|
|
(defvar regexp-history nil
|
|
|
|
|
"History list for some commands that read regular expressions.")
|
1991-05-10 19:36:23 +00:00
|
|
|
|
|
1993-04-23 06:51:44 +00:00
|
|
|
|
(defalias 'delete-non-matching-lines 'keep-lines)
|
1990-05-11 20:07:49 +00:00
|
|
|
|
(defun keep-lines (regexp)
|
|
|
|
|
"Delete all lines except those containing matches for REGEXP.
|
|
|
|
|
A match split across lines preserves all the lines it lies in.
|
1998-10-14 12:47:18 +00:00
|
|
|
|
Applies to all lines after point.
|
|
|
|
|
|
|
|
|
|
If REGEXP contains upper case characters (excluding those preceded by `\\'),
|
|
|
|
|
the matching is case-sensitive."
|
1993-03-28 20:17:39 +00:00
|
|
|
|
(interactive (list (read-from-minibuffer
|
1993-05-06 22:21:12 +00:00
|
|
|
|
"Keep lines (containing match for regexp): "
|
1997-08-26 11:45:49 +00:00
|
|
|
|
nil nil nil 'regexp-history nil t)))
|
1990-05-11 20:07:49 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(or (bolp) (forward-line 1))
|
1998-10-14 12:47:18 +00:00
|
|
|
|
(let ((start (point))
|
|
|
|
|
(case-fold-search (and case-fold-search
|
|
|
|
|
(isearch-no-upper-case-p regexp t))))
|
1990-05-11 20:07:49 +00:00
|
|
|
|
(while (not (eobp))
|
|
|
|
|
;; Start is first char not preserved by previous match.
|
|
|
|
|
(if (not (re-search-forward regexp nil 'move))
|
|
|
|
|
(delete-region start (point-max))
|
|
|
|
|
(let ((end (save-excursion (goto-char (match-beginning 0))
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(point))))
|
|
|
|
|
;; Now end is first char preserved by the new match.
|
|
|
|
|
(if (< start end)
|
|
|
|
|
(delete-region start end))))
|
|
|
|
|
(setq start (save-excursion (forward-line 1)
|
|
|
|
|
(point)))
|
|
|
|
|
;; If the match was empty, avoid matching again at same place.
|
|
|
|
|
(and (not (eobp)) (= (match-beginning 0) (match-end 0))
|
|
|
|
|
(forward-char 1))))))
|
|
|
|
|
|
1993-04-23 06:51:44 +00:00
|
|
|
|
(defalias 'delete-matching-lines 'flush-lines)
|
1990-05-11 20:07:49 +00:00
|
|
|
|
(defun flush-lines (regexp)
|
|
|
|
|
"Delete lines containing matches for REGEXP.
|
|
|
|
|
If a match is split across lines, all the lines it lies in are deleted.
|
1998-10-14 12:47:18 +00:00
|
|
|
|
Applies to lines after point.
|
|
|
|
|
|
|
|
|
|
If REGEXP contains upper case characters (excluding those preceded by `\\'),
|
|
|
|
|
the matching is case-sensitive."
|
1993-03-28 20:17:39 +00:00
|
|
|
|
(interactive (list (read-from-minibuffer
|
1993-05-06 22:21:12 +00:00
|
|
|
|
"Flush lines (containing match for regexp): "
|
1997-08-26 11:45:49 +00:00
|
|
|
|
nil nil nil 'regexp-history nil t)))
|
1998-10-14 12:47:18 +00:00
|
|
|
|
(let ((case-fold-search (and case-fold-search
|
|
|
|
|
(isearch-no-upper-case-p regexp t))))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(while (and (not (eobp))
|
|
|
|
|
(re-search-forward regexp nil t))
|
|
|
|
|
(delete-region (save-excursion (goto-char (match-beginning 0))
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(point))
|
|
|
|
|
(progn (forward-line 1) (point)))))))
|
1990-05-11 20:07:49 +00:00
|
|
|
|
|
1993-04-23 06:51:44 +00:00
|
|
|
|
(defalias 'count-matches 'how-many)
|
1990-05-11 20:07:49 +00:00
|
|
|
|
(defun how-many (regexp)
|
1998-10-14 12:47:18 +00:00
|
|
|
|
"Print number of matches for REGEXP following point.
|
|
|
|
|
|
|
|
|
|
If REGEXP contains upper case characters (excluding those preceded by `\\'),
|
|
|
|
|
the matching is case-sensitive."
|
1998-08-10 01:44:59 +00:00
|
|
|
|
(interactive (list (read-from-minibuffer
|
|
|
|
|
"How many matches for (regexp): "
|
|
|
|
|
nil nil nil 'regexp-history nil t)))
|
1998-10-14 12:47:18 +00:00
|
|
|
|
(let ((count 0) opoint
|
|
|
|
|
(case-fold-search (and case-fold-search
|
|
|
|
|
(isearch-no-upper-case-p regexp t))))
|
1990-05-11 20:07:49 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(while (and (not (eobp))
|
|
|
|
|
(progn (setq opoint (point))
|
|
|
|
|
(re-search-forward regexp nil t)))
|
|
|
|
|
(if (= opoint (point))
|
|
|
|
|
(forward-char 1)
|
|
|
|
|
(setq count (1+ count))))
|
|
|
|
|
(message "%d occurrences" count))))
|
1993-03-28 20:17:39 +00:00
|
|
|
|
|
1990-05-11 20:07:49 +00:00
|
|
|
|
(defvar occur-mode-map ())
|
|
|
|
|
(if occur-mode-map
|
|
|
|
|
()
|
|
|
|
|
(setq occur-mode-map (make-sparse-keymap))
|
1994-03-30 17:54:38 +00:00
|
|
|
|
(define-key occur-mode-map [mouse-2] 'occur-mode-mouse-goto)
|
1994-12-27 03:41:48 +00:00
|
|
|
|
(define-key occur-mode-map "\C-c\C-c" 'occur-mode-goto-occurrence)
|
1997-01-13 08:45:17 +00:00
|
|
|
|
(define-key occur-mode-map "\C-m" 'occur-mode-goto-occurrence)
|
1997-07-23 02:52:57 +00:00
|
|
|
|
(define-key occur-mode-map "\M-n" 'occur-next)
|
|
|
|
|
(define-key occur-mode-map "\M-p" 'occur-prev)
|
1997-01-13 08:45:17 +00:00
|
|
|
|
(define-key occur-mode-map "g" 'revert-buffer))
|
1990-05-11 20:07:49 +00:00
|
|
|
|
|
1997-07-25 22:21:49 +00:00
|
|
|
|
|
|
|
|
|
(defvar occur-buffer nil
|
|
|
|
|
"Name of buffer for last occur.")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defvar occur-nlines nil
|
|
|
|
|
"Number of lines of context to show around matching line.")
|
|
|
|
|
|
1997-01-13 08:45:17 +00:00
|
|
|
|
(defvar occur-command-arguments nil
|
|
|
|
|
"Arguments that were given to `occur' when it made this buffer.")
|
1990-05-11 20:07:49 +00:00
|
|
|
|
|
1997-05-05 01:11:30 +00:00
|
|
|
|
(put 'occur-mode 'mode-class 'special)
|
|
|
|
|
|
1990-05-11 20:07:49 +00:00
|
|
|
|
(defun occur-mode ()
|
|
|
|
|
"Major mode for output from \\[occur].
|
1994-12-27 03:41:48 +00:00
|
|
|
|
\\<occur-mode-map>Move point to one of the items in this buffer, then use
|
|
|
|
|
\\[occur-mode-goto-occurrence] to go to the occurrence that the item refers to.
|
|
|
|
|
Alternatively, click \\[occur-mode-mouse-goto] on an item to go to it.
|
|
|
|
|
|
1990-05-11 20:07:49 +00:00
|
|
|
|
\\{occur-mode-map}"
|
|
|
|
|
(kill-all-local-variables)
|
|
|
|
|
(use-local-map occur-mode-map)
|
|
|
|
|
(setq major-mode 'occur-mode)
|
|
|
|
|
(setq mode-name "Occur")
|
1997-01-13 08:45:17 +00:00
|
|
|
|
(make-local-variable 'revert-buffer-function)
|
|
|
|
|
(setq revert-buffer-function 'occur-revert-function)
|
1990-05-11 20:07:49 +00:00
|
|
|
|
(make-local-variable 'occur-buffer)
|
|
|
|
|
(make-local-variable 'occur-nlines)
|
1997-01-13 08:45:17 +00:00
|
|
|
|
(make-local-variable 'occur-command-arguments)
|
1993-11-11 02:48:26 +00:00
|
|
|
|
(run-hooks 'occur-mode-hook))
|
1990-05-11 20:07:49 +00:00
|
|
|
|
|
1997-01-13 08:45:17 +00:00
|
|
|
|
;; Handle revert-buffer for *Occur* buffers.
|
|
|
|
|
(defun occur-revert-function (ignore1 ignore2)
|
|
|
|
|
(let ((args occur-command-arguments ))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer occur-buffer)
|
|
|
|
|
(apply 'occur args))))
|
|
|
|
|
|
1994-03-30 17:54:38 +00:00
|
|
|
|
(defun occur-mode-mouse-goto (event)
|
|
|
|
|
"In Occur mode, go to the occurrence whose line you click on."
|
|
|
|
|
(interactive "e")
|
|
|
|
|
(let (buffer pos)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer (window-buffer (posn-window (event-end event))))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (posn-point (event-end event)))
|
|
|
|
|
(setq pos (occur-mode-find-occurrence))
|
|
|
|
|
(setq buffer occur-buffer)))
|
|
|
|
|
(pop-to-buffer buffer)
|
|
|
|
|
(goto-char (marker-position pos))))
|
|
|
|
|
|
|
|
|
|
(defun occur-mode-find-occurrence ()
|
1990-05-11 20:07:49 +00:00
|
|
|
|
(if (or (null occur-buffer)
|
|
|
|
|
(null (buffer-name occur-buffer)))
|
|
|
|
|
(progn
|
1997-07-23 02:52:57 +00:00
|
|
|
|
(setq occur-buffer nil)
|
1990-05-11 20:07:49 +00:00
|
|
|
|
(error "Buffer in which occurrences were found is deleted")))
|
1997-07-23 02:52:57 +00:00
|
|
|
|
(let ((pos (get-text-property (point) 'occur)))
|
|
|
|
|
(if (null pos)
|
|
|
|
|
(error "No occurrence on this line")
|
|
|
|
|
pos)))
|
1994-03-30 17:54:38 +00:00
|
|
|
|
|
|
|
|
|
(defun occur-mode-goto-occurrence ()
|
|
|
|
|
"Go to the occurrence the current line describes."
|
|
|
|
|
(interactive)
|
|
|
|
|
(let ((pos (occur-mode-find-occurrence)))
|
1990-05-11 20:07:49 +00:00
|
|
|
|
(pop-to-buffer occur-buffer)
|
1994-03-31 16:38:57 +00:00
|
|
|
|
(goto-char (marker-position pos))))
|
1997-07-23 02:52:57 +00:00
|
|
|
|
|
|
|
|
|
(defun occur-next (&optional n)
|
|
|
|
|
"Move to the Nth (default 1) next match in the *Occur* buffer."
|
|
|
|
|
(interactive "p")
|
|
|
|
|
(if (not n) (setq n 1))
|
|
|
|
|
(let ((r))
|
|
|
|
|
(while (> n 0)
|
|
|
|
|
(if (get-text-property (point) 'occur-point)
|
|
|
|
|
(forward-char 1))
|
|
|
|
|
(setq r (next-single-property-change (point) 'occur-point))
|
|
|
|
|
(if r
|
|
|
|
|
(goto-char r)
|
|
|
|
|
(error "no more matches"))
|
|
|
|
|
(setq n (1- n)))))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defun occur-prev (&optional n)
|
|
|
|
|
"Move to the Nth (default 1) previous match in the *Occur* buffer."
|
|
|
|
|
(interactive "p")
|
|
|
|
|
(if (not n) (setq n 1))
|
|
|
|
|
(let ((r))
|
|
|
|
|
(while (> n 0)
|
|
|
|
|
|
|
|
|
|
(setq r (get-text-property (point) 'occur-point))
|
|
|
|
|
(if r (forward-char -1))
|
|
|
|
|
|
|
|
|
|
(setq r (previous-single-property-change (point) 'occur-point))
|
|
|
|
|
(if r
|
|
|
|
|
(goto-char (- r 1))
|
|
|
|
|
(error "no earlier matches"))
|
|
|
|
|
|
|
|
|
|
(setq n (1- n)))))
|
1993-03-28 20:17:39 +00:00
|
|
|
|
|
1997-05-05 15:00:53 +00:00
|
|
|
|
(defcustom list-matching-lines-default-context-lines 0
|
1991-05-10 19:36:23 +00:00
|
|
|
|
"*Default number of context lines to include around a `list-matching-lines'
|
1990-05-11 20:07:49 +00:00
|
|
|
|
match. A negative number means to include that many lines before the match.
|
1997-05-05 15:00:53 +00:00
|
|
|
|
A positive number means to include that many lines both before and after."
|
|
|
|
|
:type 'integer
|
|
|
|
|
:group 'matching)
|
1990-05-11 20:07:49 +00:00
|
|
|
|
|
1993-04-23 06:51:44 +00:00
|
|
|
|
(defalias 'list-matching-lines 'occur)
|
1990-05-11 20:07:49 +00:00
|
|
|
|
|
1997-01-03 03:11:11 +00:00
|
|
|
|
(defvar list-matching-lines-face 'bold
|
|
|
|
|
"*Face used by M-x list-matching-lines to show the text that matches.
|
|
|
|
|
If the value is nil, don't highlight the matching portions specially.")
|
|
|
|
|
|
1990-05-11 20:07:49 +00:00
|
|
|
|
(defun occur (regexp &optional nlines)
|
1992-10-18 01:06:40 +00:00
|
|
|
|
"Show all lines in the current buffer containing a match for REGEXP.
|
1991-05-10 19:36:23 +00:00
|
|
|
|
|
|
|
|
|
If a match spreads across multiple lines, all those lines are shown.
|
1990-05-11 20:07:49 +00:00
|
|
|
|
|
1991-05-10 19:36:23 +00:00
|
|
|
|
Each line is displayed with NLINES lines before and after, or -NLINES
|
|
|
|
|
before if NLINES is negative.
|
|
|
|
|
NLINES defaults to `list-matching-lines-default-context-lines'.
|
1990-05-11 20:07:49 +00:00
|
|
|
|
Interactively it is the prefix arg.
|
|
|
|
|
|
1993-03-28 20:17:39 +00:00
|
|
|
|
The lines are shown in a buffer named `*Occur*'.
|
1990-05-11 20:07:49 +00:00
|
|
|
|
It serves as a menu to find any of the occurrences in this buffer.
|
1997-05-05 01:11:30 +00:00
|
|
|
|
\\<occur-mode-map>\\[describe-mode] in that buffer will explain how.
|
1997-05-04 01:20:08 +00:00
|
|
|
|
|
1997-05-05 01:11:30 +00:00
|
|
|
|
If REGEXP contains upper case characters (excluding those preceded by `\\'),
|
|
|
|
|
the matching is case-sensitive."
|
1996-04-17 17:30:51 +00:00
|
|
|
|
(interactive
|
|
|
|
|
(list (let* ((default (car regexp-history))
|
|
|
|
|
(input
|
|
|
|
|
(read-from-minibuffer
|
|
|
|
|
(if default
|
|
|
|
|
(format "List lines matching regexp (default `%s'): "
|
|
|
|
|
default)
|
|
|
|
|
"List lines matching regexp: ")
|
1998-01-03 07:06:18 +00:00
|
|
|
|
nil nil nil 'regexp-history default t)))
|
1998-02-08 07:34:28 +00:00
|
|
|
|
(and (equal input "") default
|
|
|
|
|
(setq input default))
|
1998-01-03 07:06:18 +00:00
|
|
|
|
input)
|
1996-04-17 17:30:51 +00:00
|
|
|
|
current-prefix-arg))
|
|
|
|
|
(let ((nlines (if nlines
|
|
|
|
|
(prefix-numeric-value nlines)
|
|
|
|
|
list-matching-lines-default-context-lines))
|
|
|
|
|
(first t)
|
1997-07-25 22:21:49 +00:00
|
|
|
|
;;flag to prevent printing separator for first match
|
1997-07-23 02:52:57 +00:00
|
|
|
|
(occur-num-matches 0)
|
1990-05-11 20:07:49 +00:00
|
|
|
|
(buffer (current-buffer))
|
1995-03-21 19:57:36 +00:00
|
|
|
|
(dir default-directory)
|
1990-05-11 20:07:49 +00:00
|
|
|
|
(linenum 1)
|
1997-07-25 22:21:49 +00:00
|
|
|
|
(prevpos
|
|
|
|
|
;;position of most recent match
|
|
|
|
|
(point-min))
|
1997-05-04 01:20:08 +00:00
|
|
|
|
(case-fold-search (and case-fold-search
|
|
|
|
|
(isearch-no-upper-case-p regexp t)))
|
1997-07-25 22:21:49 +00:00
|
|
|
|
(final-context-start
|
|
|
|
|
;; Marker to the start of context immediately following
|
|
|
|
|
;; the matched text in *Occur*.
|
|
|
|
|
(make-marker)))
|
1992-10-18 01:06:40 +00:00
|
|
|
|
;;; (save-excursion
|
|
|
|
|
;;; (beginning-of-line)
|
|
|
|
|
;;; (setq linenum (1+ (count-lines (point-min) (point))))
|
|
|
|
|
;;; (setq prevpos (point)))
|
1996-03-17 17:58:42 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
;; Check first whether there are any matches at all.
|
|
|
|
|
(if (not (re-search-forward regexp nil t))
|
|
|
|
|
(message "No matches for `%s'" regexp)
|
|
|
|
|
;; Back up, so the search loop below will find the first match.
|
|
|
|
|
(goto-char (match-beginning 0))
|
|
|
|
|
(with-output-to-temp-buffer "*Occur*"
|
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer standard-output)
|
|
|
|
|
(setq default-directory dir)
|
|
|
|
|
;; We will insert the number of lines, and "lines", later.
|
|
|
|
|
(insert " matching ")
|
|
|
|
|
(let ((print-escape-newlines t))
|
|
|
|
|
(prin1 regexp))
|
|
|
|
|
(insert " in buffer " (buffer-name buffer) ?. ?\n)
|
|
|
|
|
(occur-mode)
|
|
|
|
|
(setq occur-buffer buffer)
|
|
|
|
|
(setq occur-nlines nlines)
|
1997-01-13 08:45:17 +00:00
|
|
|
|
(setq occur-command-arguments
|
|
|
|
|
(list regexp nlines)))
|
1996-03-17 17:58:42 +00:00
|
|
|
|
(if (eq buffer standard-output)
|
1995-09-24 23:25:06 +00:00
|
|
|
|
(goto-char (point-max)))
|
1996-03-17 17:58:42 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
;; Find next match, but give up if prev match was at end of buffer.
|
|
|
|
|
(while (and (not (= prevpos (point-max)))
|
|
|
|
|
(re-search-forward regexp nil t))
|
|
|
|
|
(goto-char (match-beginning 0))
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(save-match-data
|
|
|
|
|
(setq linenum (+ linenum (count-lines prevpos (point)))))
|
|
|
|
|
(setq prevpos (point))
|
|
|
|
|
(goto-char (match-end 0))
|
1997-07-25 22:21:49 +00:00
|
|
|
|
(let* ((start
|
|
|
|
|
;;start point of text in source buffer to be put
|
|
|
|
|
;;into *Occur*
|
|
|
|
|
(save-excursion
|
1996-03-17 17:58:42 +00:00
|
|
|
|
(goto-char (match-beginning 0))
|
1997-07-25 22:21:49 +00:00
|
|
|
|
(forward-line (if (< nlines 0)
|
|
|
|
|
nlines
|
|
|
|
|
(- nlines)))
|
1996-03-17 17:58:42 +00:00
|
|
|
|
(point)))
|
1997-07-25 22:21:49 +00:00
|
|
|
|
(end
|
|
|
|
|
;; end point of text in source buffer to be put
|
|
|
|
|
;; into *Occur*
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (match-end 0))
|
|
|
|
|
(if (> nlines 0)
|
|
|
|
|
(forward-line (1+ nlines))
|
|
|
|
|
(forward-line 1))
|
|
|
|
|
(point)))
|
|
|
|
|
(match-beg
|
|
|
|
|
;; Amount of context before matching text
|
|
|
|
|
(- (match-beginning 0) start))
|
|
|
|
|
(match-len
|
|
|
|
|
;; Length of matching text
|
|
|
|
|
(- (match-end 0) (match-beginning 0)))
|
1996-03-17 17:58:42 +00:00
|
|
|
|
(tag (format "%5d" linenum))
|
|
|
|
|
(empty (make-string (length tag) ?\ ))
|
1997-07-25 22:21:49 +00:00
|
|
|
|
tem
|
1998-01-18 02:53:16 +00:00
|
|
|
|
insertion-start
|
1997-07-25 22:21:49 +00:00
|
|
|
|
;; Number of lines of context to show for current match.
|
|
|
|
|
occur-marker
|
|
|
|
|
;; Marker pointing to end of match in source buffer.
|
|
|
|
|
(text-beg
|
|
|
|
|
;; Marker pointing to start of text for one
|
|
|
|
|
;; match in *Occur*.
|
|
|
|
|
(make-marker))
|
|
|
|
|
(text-end
|
|
|
|
|
;; Marker pointing to end of text for one match
|
|
|
|
|
;; in *Occur*.
|
|
|
|
|
(make-marker))
|
1997-07-23 02:52:57 +00:00
|
|
|
|
)
|
1996-03-17 17:58:42 +00:00
|
|
|
|
(save-excursion
|
1997-07-23 02:52:57 +00:00
|
|
|
|
(setq occur-marker (make-marker))
|
|
|
|
|
(set-marker occur-marker (point))
|
1996-03-17 17:58:42 +00:00
|
|
|
|
(set-buffer standard-output)
|
1997-07-23 02:52:57 +00:00
|
|
|
|
(setq occur-num-matches (1+ occur-num-matches))
|
1996-03-17 17:58:42 +00:00
|
|
|
|
(or first (zerop nlines)
|
|
|
|
|
(insert "--------\n"))
|
|
|
|
|
(setq first nil)
|
1997-07-25 22:21:49 +00:00
|
|
|
|
|
|
|
|
|
;; Insert matching text including context lines from
|
|
|
|
|
;; source buffer into *Occur*
|
1997-07-23 02:52:57 +00:00
|
|
|
|
(set-marker text-beg (point))
|
1998-01-18 02:53:16 +00:00
|
|
|
|
(setq insertion-start (point))
|
1996-03-17 17:58:42 +00:00
|
|
|
|
(insert-buffer-substring buffer start end)
|
1998-01-18 02:53:16 +00:00
|
|
|
|
(or (and (/= (+ start match-beg) end)
|
|
|
|
|
(with-current-buffer buffer
|
|
|
|
|
(eq (char-before end) ?\n)))
|
|
|
|
|
(insert "\n"))
|
|
|
|
|
(set-marker final-context-start
|
|
|
|
|
(+ (- (point) (- end (match-end 0)))
|
|
|
|
|
(if (save-excursion
|
|
|
|
|
(set-buffer buffer)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (match-end 0))
|
|
|
|
|
(end-of-line)
|
|
|
|
|
(bolp)))
|
|
|
|
|
1 0)))
|
1997-07-23 02:52:57 +00:00
|
|
|
|
(set-marker text-end (point))
|
1997-07-25 22:21:49 +00:00
|
|
|
|
|
|
|
|
|
;; Highlight text that was matched.
|
1997-07-23 02:52:57 +00:00
|
|
|
|
(if list-matching-lines-face
|
|
|
|
|
(put-text-property
|
|
|
|
|
(+ (marker-position text-beg) match-beg)
|
|
|
|
|
(+ (marker-position text-beg) match-beg match-len)
|
|
|
|
|
'face list-matching-lines-face))
|
|
|
|
|
|
1997-07-25 22:21:49 +00:00
|
|
|
|
;; `occur-point' property is used by occur-next and
|
|
|
|
|
;; occur-prev to move between matching lines.
|
1997-07-23 02:52:57 +00:00
|
|
|
|
(put-text-property
|
|
|
|
|
(+ (marker-position text-beg) match-beg match-len)
|
|
|
|
|
(+ (marker-position text-beg) match-beg match-len 1)
|
|
|
|
|
'occur-point t)
|
1997-07-25 22:21:49 +00:00
|
|
|
|
|
|
|
|
|
;; Now go back to the start of the matching text
|
|
|
|
|
;; adding the space and colon to the start of each line.
|
1998-01-18 02:53:16 +00:00
|
|
|
|
(goto-char insertion-start)
|
1997-07-25 22:21:49 +00:00
|
|
|
|
;; Insert space and colon for lines of context before match.
|
1997-07-23 02:52:57 +00:00
|
|
|
|
(setq tem (if (< linenum nlines)
|
|
|
|
|
(- nlines linenum)
|
|
|
|
|
nlines))
|
1996-03-17 17:58:42 +00:00
|
|
|
|
(while (> tem 0)
|
|
|
|
|
(insert empty ?:)
|
|
|
|
|
(forward-line 1)
|
|
|
|
|
(setq tem (1- tem)))
|
1997-07-25 22:21:49 +00:00
|
|
|
|
|
|
|
|
|
;; Insert line number and colon for the lines of
|
|
|
|
|
;; matching text.
|
|
|
|
|
(let ((this-linenum linenum))
|
1996-03-17 17:58:42 +00:00
|
|
|
|
(while (< (point) final-context-start)
|
|
|
|
|
(if (null tag)
|
|
|
|
|
(setq tag (format "%5d" this-linenum)))
|
|
|
|
|
(insert tag ?:)
|
|
|
|
|
(forward-line 1)
|
|
|
|
|
(setq tag nil)
|
|
|
|
|
(setq this-linenum (1+ this-linenum)))
|
1998-01-18 02:53:16 +00:00
|
|
|
|
(while (and (not (eobp)) (<= (point) final-context-start))
|
1996-03-17 17:58:42 +00:00
|
|
|
|
(insert empty ?:)
|
|
|
|
|
(forward-line 1)
|
|
|
|
|
(setq this-linenum (1+ this-linenum))))
|
1997-07-25 22:21:49 +00:00
|
|
|
|
|
|
|
|
|
;; Insert space and colon for lines of context after match.
|
1997-07-23 02:52:57 +00:00
|
|
|
|
(while (and (< (point) (point-max)) (< tem nlines))
|
1996-03-17 17:58:42 +00:00
|
|
|
|
(insert empty ?:)
|
|
|
|
|
(forward-line 1)
|
|
|
|
|
(setq tem (1+ tem)))
|
1997-07-23 02:52:57 +00:00
|
|
|
|
|
|
|
|
|
;; Add text properties. The `occur' prop is used to
|
|
|
|
|
;; store the marker of the matching text in the
|
|
|
|
|
;; source buffer.
|
|
|
|
|
(put-text-property (marker-position text-beg)
|
|
|
|
|
(- (marker-position text-end) 1)
|
|
|
|
|
'mouse-face 'highlight)
|
|
|
|
|
(put-text-property (marker-position text-beg)
|
1997-07-25 22:21:49 +00:00
|
|
|
|
(marker-position text-end)
|
1997-07-23 02:52:57 +00:00
|
|
|
|
'occur occur-marker)
|
1996-03-17 17:58:42 +00:00
|
|
|
|
(goto-char (point-max)))
|
|
|
|
|
(forward-line 1)))
|
|
|
|
|
(set-buffer standard-output)
|
1997-07-25 22:21:49 +00:00
|
|
|
|
;; Go back to top of *Occur* and finish off by printing the
|
|
|
|
|
;; number of matching lines.
|
1996-03-17 17:58:42 +00:00
|
|
|
|
(goto-char (point-min))
|
1996-06-04 15:31:01 +00:00
|
|
|
|
(let ((message-string
|
1997-07-23 02:52:57 +00:00
|
|
|
|
(if (= occur-num-matches 1)
|
1996-06-04 15:31:01 +00:00
|
|
|
|
"1 line"
|
1997-07-23 02:52:57 +00:00
|
|
|
|
(format "%d lines" occur-num-matches))))
|
1996-06-04 15:31:01 +00:00
|
|
|
|
(insert message-string)
|
|
|
|
|
(if (interactive-p)
|
1998-06-20 22:25:31 +00:00
|
|
|
|
(message "%s matched" message-string)))
|
|
|
|
|
(setq buffer-read-only t)))))))
|
1990-05-11 20:07:49 +00:00
|
|
|
|
|
1993-03-09 19:51:29 +00:00
|
|
|
|
;; It would be nice to use \\[...], but there is no reasonable way
|
|
|
|
|
;; to make that display both SPC and Y.
|
1990-05-11 20:07:49 +00:00
|
|
|
|
(defconst query-replace-help
|
|
|
|
|
"Type Space or `y' to replace one match, Delete or `n' to skip to next,
|
1993-12-24 22:55:03 +00:00
|
|
|
|
RET or `q' to exit, Period to replace one match and exit,
|
1990-05-11 20:07:49 +00:00
|
|
|
|
Comma to replace but not move point immediately,
|
|
|
|
|
C-r to enter recursive edit (\\[exit-recursive-edit] to get out again),
|
|
|
|
|
C-w to delete match and recursive edit,
|
|
|
|
|
C-l to clear the screen, redisplay, and offer same replacement again,
|
|
|
|
|
! to replace all remaining matches with no more questions,
|
|
|
|
|
^ to move point back to previous match."
|
|
|
|
|
"Help message while in query-replace")
|
|
|
|
|
|
1993-03-09 19:51:29 +00:00
|
|
|
|
(defvar query-replace-map (make-sparse-keymap)
|
|
|
|
|
"Keymap that defines the responses to questions in `query-replace'.
|
|
|
|
|
The \"bindings\" in this map are not commands; they are answers.
|
|
|
|
|
The valid answers include `act', `skip', `act-and-show',
|
|
|
|
|
`exit', `act-and-exit', `edit', `delete-and-edit', `recenter',
|
1994-11-23 09:10:36 +00:00
|
|
|
|
`automatic', `backup', `exit-prefix', and `help'.")
|
1993-03-09 19:51:29 +00:00
|
|
|
|
|
|
|
|
|
(define-key query-replace-map " " 'act)
|
|
|
|
|
(define-key query-replace-map "\d" 'skip)
|
|
|
|
|
(define-key query-replace-map [delete] 'skip)
|
1993-03-23 02:26:42 +00:00
|
|
|
|
(define-key query-replace-map [backspace] 'skip)
|
1993-03-09 19:51:29 +00:00
|
|
|
|
(define-key query-replace-map "y" 'act)
|
|
|
|
|
(define-key query-replace-map "n" 'skip)
|
1994-11-14 01:35:08 +00:00
|
|
|
|
(define-key query-replace-map "Y" 'act)
|
|
|
|
|
(define-key query-replace-map "N" 'skip)
|
1993-03-09 19:51:29 +00:00
|
|
|
|
(define-key query-replace-map "," 'act-and-show)
|
|
|
|
|
(define-key query-replace-map "q" 'exit)
|
1993-06-21 00:45:17 +00:00
|
|
|
|
(define-key query-replace-map "\r" 'exit)
|
1993-06-22 08:12:10 +00:00
|
|
|
|
(define-key query-replace-map [return] 'exit)
|
1993-03-09 19:51:29 +00:00
|
|
|
|
(define-key query-replace-map "." 'act-and-exit)
|
|
|
|
|
(define-key query-replace-map "\C-r" 'edit)
|
|
|
|
|
(define-key query-replace-map "\C-w" 'delete-and-edit)
|
|
|
|
|
(define-key query-replace-map "\C-l" 'recenter)
|
|
|
|
|
(define-key query-replace-map "!" 'automatic)
|
|
|
|
|
(define-key query-replace-map "^" 'backup)
|
|
|
|
|
(define-key query-replace-map "\C-h" 'help)
|
1995-06-07 20:54:21 +00:00
|
|
|
|
(define-key query-replace-map [f1] 'help)
|
|
|
|
|
(define-key query-replace-map [help] 'help)
|
1993-03-09 19:51:29 +00:00
|
|
|
|
(define-key query-replace-map "?" 'help)
|
1993-03-09 21:18:31 +00:00
|
|
|
|
(define-key query-replace-map "\C-g" 'quit)
|
|
|
|
|
(define-key query-replace-map "\C-]" 'quit)
|
1994-11-23 09:10:36 +00:00
|
|
|
|
(define-key query-replace-map "\e" 'exit-prefix)
|
|
|
|
|
(define-key query-replace-map [escape] 'exit-prefix)
|
1993-03-09 19:51:29 +00:00
|
|
|
|
|
1990-05-11 20:07:49 +00:00
|
|
|
|
(defun perform-replace (from-string replacements
|
|
|
|
|
query-flag regexp-flag delimited-flag
|
1993-03-09 19:51:29 +00:00
|
|
|
|
&optional repeat-count map)
|
1990-05-11 20:07:49 +00:00
|
|
|
|
"Subroutine of `query-replace'. Its complexity handles interactive queries.
|
|
|
|
|
Don't use this in your own program unless you want to query and set the mark
|
|
|
|
|
just as `query-replace' does. Instead, write a simple loop like this:
|
|
|
|
|
(while (re-search-forward \"foo[ \t]+bar\" nil t)
|
|
|
|
|
(replace-match \"foobar\" nil nil))
|
1993-12-31 15:04:23 +00:00
|
|
|
|
which will run faster and probably do exactly what you want."
|
1993-03-09 19:51:29 +00:00
|
|
|
|
(or map (setq map query-replace-map))
|
1996-12-07 21:23:37 +00:00
|
|
|
|
(and query-flag minibuffer-auto-raise
|
|
|
|
|
(raise-frame (window-frame (minibuffer-window))))
|
1990-05-11 20:07:49 +00:00
|
|
|
|
(let ((nocasify (not (and case-fold-search case-replace
|
|
|
|
|
(string-equal from-string
|
|
|
|
|
(downcase from-string)))))
|
|
|
|
|
(literal (not regexp-flag))
|
|
|
|
|
(search-function (if regexp-flag 're-search-forward 'search-forward))
|
|
|
|
|
(search-string from-string)
|
1992-06-30 13:54:21 +00:00
|
|
|
|
(real-match-data nil) ; the match data for the current match
|
1990-05-11 20:07:49 +00:00
|
|
|
|
(next-replacement nil)
|
|
|
|
|
(replacement-index 0)
|
|
|
|
|
(keep-going t)
|
|
|
|
|
(stack nil)
|
|
|
|
|
(next-rotate-count 0)
|
|
|
|
|
(replace-count 0)
|
1997-06-24 10:48:10 +00:00
|
|
|
|
(nonempty-match nil)
|
|
|
|
|
|
1997-11-11 03:26:55 +00:00
|
|
|
|
;; If non-nil, it is marker saying where in the buffer to stop.
|
|
|
|
|
(limit nil)
|
|
|
|
|
|
1997-06-24 10:48:10 +00:00
|
|
|
|
;; Data for the next match. If a cons, it has the same format as
|
|
|
|
|
;; (match-data); otherwise it is t if a match is possible at point.
|
1996-12-18 23:36:24 +00:00
|
|
|
|
(match-again t)
|
1997-06-24 10:48:10 +00:00
|
|
|
|
|
1994-05-01 22:56:54 +00:00
|
|
|
|
(message
|
|
|
|
|
(if query-flag
|
|
|
|
|
(substitute-command-keys
|
|
|
|
|
"Query replacing %s with %s: (\\<query-replace-map>\\[help] for help) "))))
|
1997-11-11 03:26:55 +00:00
|
|
|
|
|
|
|
|
|
;; If region is active, in Transient Mark mode, operate on region.
|
|
|
|
|
(if (and transient-mark-mode mark-active)
|
|
|
|
|
(progn
|
|
|
|
|
(setq limit (copy-marker (region-end)))
|
|
|
|
|
(goto-char (region-beginning))
|
|
|
|
|
(deactivate-mark)))
|
1990-05-11 20:07:49 +00:00
|
|
|
|
(if (stringp replacements)
|
|
|
|
|
(setq next-replacement replacements)
|
|
|
|
|
(or repeat-count (setq repeat-count 1)))
|
|
|
|
|
(if delimited-flag
|
|
|
|
|
(setq search-function 're-search-forward
|
|
|
|
|
search-string (concat "\\b"
|
|
|
|
|
(if regexp-flag from-string
|
|
|
|
|
(regexp-quote from-string))
|
|
|
|
|
"\\b")))
|
|
|
|
|
(push-mark)
|
|
|
|
|
(undo-boundary)
|
1993-12-31 15:04:23 +00:00
|
|
|
|
(unwind-protect
|
|
|
|
|
;; Loop finding occurrences that perhaps should be replaced.
|
|
|
|
|
(while (and keep-going
|
|
|
|
|
(not (eobp))
|
1997-06-24 10:48:10 +00:00
|
|
|
|
;; Use the next match if it is already known;
|
|
|
|
|
;; otherwise, search for a match after moving forward
|
|
|
|
|
;; one char if progress is required.
|
|
|
|
|
(setq real-match-data
|
|
|
|
|
(if (consp match-again)
|
|
|
|
|
(progn (goto-char (nth 1 match-again))
|
|
|
|
|
match-again)
|
|
|
|
|
(and (or match-again
|
|
|
|
|
(progn
|
|
|
|
|
(forward-char 1)
|
|
|
|
|
(not (eobp))))
|
1997-11-11 03:26:55 +00:00
|
|
|
|
(funcall search-function search-string limit t)
|
1997-06-24 10:48:10 +00:00
|
|
|
|
;; For speed, use only integers and
|
|
|
|
|
;; reuse the list used last time.
|
|
|
|
|
(match-data t real-match-data)))))
|
|
|
|
|
|
|
|
|
|
;; Record whether the match is nonempty, to avoid an infinite loop
|
|
|
|
|
;; repeatedly matching the same empty string.
|
|
|
|
|
(setq nonempty-match
|
|
|
|
|
(/= (nth 0 real-match-data) (nth 1 real-match-data)))
|
|
|
|
|
|
|
|
|
|
;; If the match is empty, record that the next one can't be adjacent.
|
|
|
|
|
;; Otherwise, if matching a regular expression, do the next
|
|
|
|
|
;; match now, since the replacement for this match may
|
|
|
|
|
;; affect whether the next match is adjacent to this one.
|
|
|
|
|
(setq match-again
|
|
|
|
|
(and nonempty-match
|
|
|
|
|
(or (not regexp-flag)
|
|
|
|
|
(and (looking-at search-string)
|
1997-06-25 05:30:02 +00:00
|
|
|
|
(match-data)))))
|
1997-06-24 10:48:10 +00:00
|
|
|
|
|
1993-12-31 15:04:23 +00:00
|
|
|
|
;; If time for a change, advance to next replacement string.
|
|
|
|
|
(if (and (listp replacements)
|
|
|
|
|
(= next-rotate-count replace-count))
|
|
|
|
|
(progn
|
|
|
|
|
(setq next-rotate-count
|
|
|
|
|
(+ next-rotate-count repeat-count))
|
|
|
|
|
(setq next-replacement (nth replacement-index replacements))
|
|
|
|
|
(setq replacement-index (% (1+ replacement-index) (length replacements)))))
|
|
|
|
|
(if (not query-flag)
|
|
|
|
|
(progn
|
1998-03-14 04:45:46 +00:00
|
|
|
|
(set-match-data real-match-data)
|
1993-12-31 15:04:23 +00:00
|
|
|
|
(replace-match next-replacement nocasify literal)
|
|
|
|
|
(setq replace-count (1+ replace-count)))
|
|
|
|
|
(undo-boundary)
|
|
|
|
|
(let (done replaced key def)
|
|
|
|
|
;; Loop reading commands until one of them sets done,
|
|
|
|
|
;; which means it has finished handling this occurrence.
|
|
|
|
|
(while (not done)
|
1998-03-14 04:45:46 +00:00
|
|
|
|
(set-match-data real-match-data)
|
1993-12-31 15:04:23 +00:00
|
|
|
|
(replace-highlight (match-beginning 0) (match-end 0))
|
1995-01-27 19:19:23 +00:00
|
|
|
|
;; Bind message-log-max so we don't fill up the message log
|
|
|
|
|
;; with a bunch of identical messages.
|
|
|
|
|
(let ((message-log-max nil))
|
|
|
|
|
(message message from-string next-replacement))
|
1993-12-31 15:04:23 +00:00
|
|
|
|
(setq key (read-event))
|
1997-05-23 17:34:11 +00:00
|
|
|
|
;; Necessary in case something happens during read-event
|
|
|
|
|
;; that clobbers the match data.
|
1998-03-14 04:45:46 +00:00
|
|
|
|
(set-match-data real-match-data)
|
1993-12-31 15:04:23 +00:00
|
|
|
|
(setq key (vector key))
|
|
|
|
|
(setq def (lookup-key map key))
|
|
|
|
|
;; Restore the match data while we process the command.
|
|
|
|
|
(cond ((eq def 'help)
|
|
|
|
|
(with-output-to-temp-buffer "*Help*"
|
|
|
|
|
(princ
|
|
|
|
|
(concat "Query replacing "
|
|
|
|
|
(if regexp-flag "regexp " "")
|
|
|
|
|
from-string " with "
|
|
|
|
|
next-replacement ".\n\n"
|
|
|
|
|
(substitute-command-keys
|
1994-11-09 05:48:05 +00:00
|
|
|
|
query-replace-help)))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer standard-output)
|
|
|
|
|
(help-mode))))
|
1993-12-31 15:04:23 +00:00
|
|
|
|
((eq def 'exit)
|
|
|
|
|
(setq keep-going nil)
|
|
|
|
|
(setq done t))
|
|
|
|
|
((eq def 'backup)
|
1994-02-11 21:07:59 +00:00
|
|
|
|
(if stack
|
|
|
|
|
(let ((elt (car stack)))
|
|
|
|
|
(goto-char (car elt))
|
|
|
|
|
(setq replaced (eq t (cdr elt)))
|
|
|
|
|
(or replaced
|
1998-03-14 04:45:46 +00:00
|
|
|
|
(set-match-data (cdr elt)))
|
1994-02-11 21:07:59 +00:00
|
|
|
|
(setq stack (cdr stack)))
|
|
|
|
|
(message "No previous match")
|
|
|
|
|
(ding 'no-terminate)
|
|
|
|
|
(sit-for 1)))
|
1993-12-31 15:04:23 +00:00
|
|
|
|
((eq def 'act)
|
|
|
|
|
(or replaced
|
1996-09-04 17:13:24 +00:00
|
|
|
|
(progn
|
|
|
|
|
(replace-match next-replacement nocasify literal)
|
|
|
|
|
(setq replace-count (1+ replace-count))))
|
1993-12-31 15:04:23 +00:00
|
|
|
|
(setq done t replaced t))
|
|
|
|
|
((eq def 'act-and-exit)
|
|
|
|
|
(or replaced
|
1996-09-04 17:13:24 +00:00
|
|
|
|
(progn
|
|
|
|
|
(replace-match next-replacement nocasify literal)
|
|
|
|
|
(setq replace-count (1+ replace-count))))
|
1993-12-31 15:04:23 +00:00
|
|
|
|
(setq keep-going nil)
|
|
|
|
|
(setq done t replaced t))
|
|
|
|
|
((eq def 'act-and-show)
|
|
|
|
|
(if (not replaced)
|
|
|
|
|
(progn
|
|
|
|
|
(replace-match next-replacement nocasify literal)
|
1996-09-04 17:13:24 +00:00
|
|
|
|
(setq replace-count (1+ replace-count))
|
1993-12-31 15:04:23 +00:00
|
|
|
|
(setq replaced t))))
|
|
|
|
|
((eq def 'automatic)
|
|
|
|
|
(or replaced
|
1996-09-04 17:13:24 +00:00
|
|
|
|
(progn
|
|
|
|
|
(replace-match next-replacement nocasify literal)
|
|
|
|
|
(setq replace-count (1+ replace-count))))
|
1993-12-31 15:04:23 +00:00
|
|
|
|
(setq done t query-flag nil replaced t))
|
|
|
|
|
((eq def 'skip)
|
|
|
|
|
(setq done t))
|
|
|
|
|
((eq def 'recenter)
|
|
|
|
|
(recenter nil))
|
|
|
|
|
((eq def 'edit)
|
1998-10-06 23:25:52 +00:00
|
|
|
|
(let ((opos (point-marker)))
|
|
|
|
|
(goto-char (match-beginning 0))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(funcall search-function search-string limit t)
|
|
|
|
|
(setq real-match-data (match-data)))
|
|
|
|
|
(save-excursion (recursive-edit))
|
|
|
|
|
(goto-char opos))
|
1998-03-26 06:31:26 +00:00
|
|
|
|
(set-match-data real-match-data)
|
1996-12-18 23:36:24 +00:00
|
|
|
|
;; Before we make the replacement,
|
|
|
|
|
;; decide whether the search string
|
|
|
|
|
;; can match again just after this match.
|
1997-06-24 10:48:10 +00:00
|
|
|
|
(if (and regexp-flag nonempty-match)
|
|
|
|
|
(setq match-again (and (looking-at search-string)
|
1997-06-25 05:30:02 +00:00
|
|
|
|
(match-data)))))
|
1993-12-31 15:04:23 +00:00
|
|
|
|
((eq def 'delete-and-edit)
|
|
|
|
|
(delete-region (match-beginning 0) (match-end 0))
|
1998-03-14 04:45:46 +00:00
|
|
|
|
(set-match-data
|
1993-12-31 15:04:23 +00:00
|
|
|
|
(prog1 (match-data)
|
|
|
|
|
(save-excursion (recursive-edit))))
|
|
|
|
|
(setq replaced t))
|
1994-11-23 09:10:36 +00:00
|
|
|
|
;; Note: we do not need to treat `exit-prefix'
|
|
|
|
|
;; specially here, since we reread
|
|
|
|
|
;; any unrecognized character.
|
1993-12-31 15:04:23 +00:00
|
|
|
|
(t
|
1994-11-23 09:10:36 +00:00
|
|
|
|
(setq this-command 'mode-exited)
|
1993-12-31 15:04:23 +00:00
|
|
|
|
(setq keep-going nil)
|
|
|
|
|
(setq unread-command-events
|
|
|
|
|
(append (listify-key-sequence key)
|
|
|
|
|
unread-command-events))
|
|
|
|
|
(setq done t))))
|
|
|
|
|
;; Record previous position for ^ when we move on.
|
|
|
|
|
;; Change markers to numbers in the match data
|
|
|
|
|
;; since lots of markers slow down editing.
|
|
|
|
|
(setq stack
|
|
|
|
|
(cons (cons (point)
|
1996-12-27 00:44:57 +00:00
|
|
|
|
(or replaced (match-data t)))
|
1997-06-24 10:48:10 +00:00
|
|
|
|
stack)))))
|
1993-12-31 15:04:23 +00:00
|
|
|
|
(replace-dehighlight))
|
1994-12-14 03:44:51 +00:00
|
|
|
|
(or unread-command-events
|
|
|
|
|
(message "Replaced %d occurrence%s"
|
|
|
|
|
replace-count
|
|
|
|
|
(if (= replace-count 1) "" "s")))
|
|
|
|
|
(and keep-going stack)))
|
1990-05-11 20:07:49 +00:00
|
|
|
|
|
1997-11-11 02:54:10 +00:00
|
|
|
|
(defcustom query-replace-highlight t
|
1997-05-05 15:00:53 +00:00
|
|
|
|
"*Non-nil means to highlight words during query replacement."
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'matching)
|
1993-12-31 15:04:23 +00:00
|
|
|
|
|
|
|
|
|
(defvar replace-overlay nil)
|
|
|
|
|
|
|
|
|
|
(defun replace-dehighlight ()
|
|
|
|
|
(and replace-overlay
|
|
|
|
|
(progn
|
|
|
|
|
(delete-overlay replace-overlay)
|
|
|
|
|
(setq replace-overlay nil))))
|
|
|
|
|
|
|
|
|
|
(defun replace-highlight (start end)
|
|
|
|
|
(and query-replace-highlight
|
|
|
|
|
(progn
|
|
|
|
|
(or replace-overlay
|
|
|
|
|
(progn
|
|
|
|
|
(setq replace-overlay (make-overlay start end))
|
|
|
|
|
(overlay-put replace-overlay 'face
|
|
|
|
|
(if (internal-find-face 'query-replace)
|
|
|
|
|
'query-replace 'region))))
|
|
|
|
|
(move-overlay replace-overlay start end (current-buffer)))))
|
|
|
|
|
|
1992-05-30 21:11:25 +00:00
|
|
|
|
;;; replace.el ends here
|