Comments.
[bpt/emacs.git] / lisp / isearch.el
CommitLineData
55535639 1;;; isearch.el --- incremental search minor mode
3b1e4dd1 2
c4f6e489
GM
3;; Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1999, 2000, 2001,
4;; 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
8989a920 5;; Free Software Foundation, Inc.
3a801d0c 6
3b1e4dd1 7;; Author: Daniel LaLiberte <liberte@cs.uiuc.edu>
0f09b616 8;; Maintainer: FSF
117132a6 9;; Keywords: matching
8e1cae6d 10
54d2ecd3 11;; This file is part of GNU Emacs.
8e1cae6d 12
eb3fa2cf 13;; GNU Emacs is free software: you can redistribute it and/or modify
59243403 14;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
15;; the Free Software Foundation, either version 3 of the License, or
16;; (at your option) any later version.
59243403 17
8e1cae6d 18;; GNU Emacs is distributed in the hope that it will be useful,
59243403
RS
19;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21;; GNU General Public License for more details.
22
23;; You should have received a copy of the GNU General Public License
eb3fa2cf 24;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
8e1cae6d 25
3b1e4dd1
ER
26;;; Commentary:
27
8e1cae6d
JB
28;; Instructions
29
08200510
RS
30;; For programmed use of isearch-mode, e.g. calling (isearch-forward),
31;; isearch-mode behaves modally and does not return until the search
117132a6 32;; is completed. It uses a recursive-edit to behave this way.
08200510 33
8e1cae6d 34;; The key bindings active within isearch-mode are defined below in
08200510
RS
35;; `isearch-mode-map' which is given bindings close to the default
36;; characters of the original isearch.el. With `isearch-mode',
37;; however, you can bind multi-character keys and it should be easier
38;; to add new commands. One bug though: keys with meta-prefix cannot
39;; be longer than two chars. Also see minibuffer-local-isearch-map
40;; for bindings active during `isearch-edit-string'.
41
117132a6
DL
42;; isearch-mode should work even if you switch windows with the mouse,
43;; in which case isearch-mode is terminated automatically before the
44;; switch.
08200510
RS
45
46;; The search ring and completion commands automatically put you in
47;; the minibuffer to edit the string. This gives you a chance to
48;; modify the search string before executing the search. There are
49;; three commands to terminate the editing: C-s and C-r exit the
50;; minibuffer and search forward and reverse respectively, while C-m
51;; exits and does a nonincremental search.
52
53;; Exiting immediately from isearch uses isearch-edit-string instead
54;; of nonincremental-search, if search-nonincremental-instead is non-nil.
55;; The name of this option should probably be changed if we decide to
56;; keep the behavior. No point in forcing nonincremental search until
57;; the last possible moment.
58
3b1e4dd1 59;;; Code:
08200510
RS
60
61\f
191f025a 62;; Some additional options and constants.
08200510 63
9c1db929
RS
64(defgroup isearch nil
65 "Incremental search minor mode."
117132a6
DL
66 :link '(emacs-commentary-link "isearch")
67 :link '(custom-manual "(emacs)Incremental Search")
9c1db929
RS
68 :prefix "isearch-"
69 :prefix "search-"
70 :group 'matching)
fdf5afa4 71
9c1db929
RS
72
73(defcustom search-exit-option t
4b65254d 74 "Non-nil means random control characters terminate incremental search."
9c1db929
RS
75 :type 'boolean
76 :group 'isearch)
77
78(defcustom search-slow-window-lines 1
4b65254d 79 "Number of lines in slow search display windows.
fdf5afa4
RS
80These are the short windows used during incremental search on slow terminals.
81Negative means put the slow search window at the top (normally it's at bottom)
9c1db929
RS
82and the value is minus the number of lines."
83 :type 'integer
84 :group 'isearch)
fdf5afa4 85
9c1db929 86(defcustom search-slow-speed 1200
4b65254d 87 "Highest terminal speed at which to use \"slow\" style incremental search.
fdf5afa4 88This is the style where a one-line window is created to show the line
9c1db929
RS
89that the search has reached."
90 :type 'integer
91 :group 'isearch)
8e1cae6d 92
9c1db929 93(defcustom search-upper-case 'not-yanks
4b65254d 94 "If non-nil, upper case chars disable case fold searching.
08200510
RS
95That is, upper and lower case chars must match exactly.
96This applies no matter where the chars come from, but does not
fdf5afa4 97apply to chars in regexps that are prefixed with `\\'.
6e3057bb
JL
98If this value is `not-yanks', text yanked into the search string
99in Isearch mode is always downcased."
9c1db929
RS
100 :type '(choice (const :tag "off" nil)
101 (const not-yanks)
5786b3ed 102 (other :tag "on" t))
9c1db929 103 :group 'isearch)
8e1cae6d 104
9c1db929 105(defcustom search-nonincremental-instead t
4b65254d 106 "If non-nil, do a nonincremental search instead if exiting immediately.
08200510 107Actually, `isearch-edit-string' is called to let you enter the search
9c1db929
RS
108string, and RET terminates editing and does a nonincremental search."
109 :type 'boolean
110 :group 'isearch)
8e1cae6d 111
ab67e8b6 112(defcustom search-whitespace-regexp "\\s-+"
4b65254d 113 "If non-nil, regular expression to match a sequence of whitespace chars.
e2b992cb 114This applies to regular expression incremental search.
ab67e8b6
RS
115When you put a space or spaces in the incremental regexp, it stands for
116this, unless it is inside of a regexp construct such as [...] or *, + or ?.
117You might want to use something like \"[ \\t\\r\\n]+\" instead.
118In the Customization buffer, that is `[' followed by a space,
51a77cba
RS
119a tab, a carriage return (control-M), a newline, and `]+'.
120
121When this is nil, each space you type matches literally, against one space."
122 :type '(choice (const :tag "Find Spaces Literally" nil)
123 regexp)
9c1db929 124 :group 'isearch)
8e1cae6d 125
0352b205
RS
126(defcustom search-invisible 'open
127 "If t incremental search can match hidden text.
6480c508
JB
128A nil value means don't match invisible text.
129When the value is `open', if the text matched is made invisible by
0352b205
RS
130an overlay having an `invisible' property and that overlay has a property
131`isearch-open-invisible', then incremental search will show the contents.
cd59ea72
SM
132\(This applies when using `outline.el' and `hideshow.el'.)
133See also `reveal-mode' if you want overlays to automatically be opened
134whenever point is in one of them."
0352b205
RS
135 :type '(choice (const :tag "Match hidden text" t)
136 (const :tag "Open overlays" open)
79c7a4fa 137 (const :tag "Don't match hidden text" nil))
0352b205
RS
138 :group 'isearch)
139
140(defcustom isearch-hide-immediately t
68c18d6d
RS
141 "If non-nil, re-hide an invisible match right away.
142This variable makes a difference when `search-invisible' is set to `open'.
143It means that after search makes some invisible text visible
144to show the match, it makes the text invisible again when the match moves.
b48ca14f
JB
145Ordinarily the text becomes invisible again at the end of the search."
146 :type 'boolean
0352b205 147 :group 'isearch)
86bfaffe 148
00098b01 149(defcustom isearch-resume-in-command-history nil
4b65254d
JB
150 "If non-nil, `isearch-resume' commands are added to the command history.
151This allows you to resume earlier Isearch sessions through the
00098b01 152command history."
6848c9f1
KS
153 :type 'boolean
154 :group 'isearch)
155
08200510
RS
156(defvar isearch-mode-hook nil
157 "Function(s) to call after starting up an incremental search.")
158
159(defvar isearch-mode-end-hook nil
87e97673
RS
160 "Function(s) to call after terminating an incremental search.
161When these functions are called, `isearch-mode-end-hook-quit'
4974aba8 162is non-nil if the user quits the search.")
87e97673
RS
163
164(defvar isearch-mode-end-hook-quit nil
4974aba8 165 "Non-nil while running `isearch-mode-end-hook' if the user quits the search.")
08200510 166
ac475d3a
JL
167(defvar isearch-message-function nil
168 "Function to call to display the search prompt.
169If nil, use `isearch-message'.")
170
6a18e4e7
JL
171(defvar isearch-wrap-function nil
172 "Function to call to wrap the search when search is failed.
173If nil, move point to the beginning of the buffer for a forward search,
174or to the end of the buffer for a backward search.")
175
176(defvar isearch-push-state-function nil
4b65254d 177 "Function to save a function restoring the mode-specific Isearch state
6a18e4e7
JL
178to the search status stack.")
179
f2fd3261 180(defvar isearch-filter-predicate 'isearch-filter-visible
2f669fac
JL
181 "Predicate that filters the search hits that would normally be available.
182Search hits that dissatisfy the predicate are skipped. The function
183has two arguments: the positions of start and end of text matched by
184the search. If this function returns nil, continue searching without
185stopping at this match.")
5e189f39 186
191f025a 187;; Search ring.
8e1cae6d
JB
188
189(defvar search-ring nil
190 "List of search string sequences.")
08200510 191(defvar regexp-search-ring nil
8e1cae6d
JB
192 "List of regular expression search string sequences.")
193
9c1db929 194(defcustom search-ring-max 16
4b65254d 195 "Maximum length of search ring before oldest elements are thrown away."
9c1db929
RS
196 :type 'integer
197 :group 'isearch)
198(defcustom regexp-search-ring-max 16
4b65254d 199 "Maximum length of regexp search ring before oldest elements are thrown away."
9c1db929
RS
200 :type 'integer
201 :group 'isearch)
8e1cae6d
JB
202
203(defvar search-ring-yank-pointer nil
a5dcf63f 204 "Index in `search-ring' of last string reused.
6480c508 205It is nil if none yet.")
08200510 206(defvar regexp-search-ring-yank-pointer nil
a5dcf63f 207 "Index in `regexp-search-ring' of last string reused.
6480c508 208It is nil if none yet.")
8e1cae6d 209
9c1db929 210(defcustom search-ring-update nil
4b65254d 211 "Non-nil if advancing or retreating in the search ring should cause search.
9c1db929
RS
212Default value, nil, means edit the string instead."
213 :type 'boolean
214 :group 'isearch)
08200510 215
bca92193
JL
216;;; isearch highlight customization.
217
218(defcustom search-highlight t
4b65254d 219 "Non-nil means incremental search highlights the current match."
bca92193
JL
220 :type 'boolean
221 :group 'isearch)
222
223(defface isearch
224 '((((class color) (min-colors 88) (background light))
225 ;; The background must not be too dark, for that means
226 ;; the character is hard to see when the cursor is there.
a49ff341 227 (:background "magenta3" :foreground "lightskyblue1"))
bca92193
JL
228 (((class color) (min-colors 88) (background dark))
229 (:background "palevioletred2" :foreground "brown4"))
230 (((class color) (min-colors 16))
231 (:background "magenta4" :foreground "cyan1"))
232 (((class color) (min-colors 8))
233 (:background "magenta4" :foreground "cyan1"))
234 (t (:inverse-video t)))
235 "Face for highlighting Isearch matches."
92cc4a30
JL
236 :group 'isearch
237 :group 'basic-faces)
bca92193
JL
238(defvar isearch 'isearch)
239
d8891294
JL
240(defface isearch-fail
241 '((((class color) (min-colors 88) (background light))
242 (:background "RosyBrown1"))
243 (((class color) (min-colors 88) (background dark))
244 (:background "red4"))
245 (((class color) (min-colors 16))
246 (:background "red"))
247 (((class color) (min-colors 8))
248 (:background "red"))
249 (((class color grayscale))
250 :foreground "grey")
251 (t (:inverse-video t)))
723e5b84 252 "Face for highlighting failed part in Isearch echo-area message."
d8891294 253 :version "23.1"
723e5b84
BG
254 :group 'isearch)
255
bca92193 256(defcustom isearch-lazy-highlight t
4b65254d 257 "Controls the lazy-highlighting during incremental search.
bca92193
JL
258When non-nil, all text in the buffer matching the current search
259string is highlighted lazily (see `lazy-highlight-initial-delay'
260and `lazy-highlight-interval')."
261 :type 'boolean
262 :group 'lazy-highlight
263 :group 'isearch)
264
c1bc6bb6 265;;; Lazy highlight customization.
bca92193 266
c1bc6bb6
RS
267(defgroup lazy-highlight nil
268 "Lazy highlighting feature for matching strings."
269 :prefix "lazy-highlight-"
270 :version "21.1"
271 :group 'isearch
bca92193 272 :group 'matching)
c1bc6bb6
RS
273
274(defcustom lazy-highlight-cleanup t
4b65254d 275 "Controls whether to remove extra highlighting after a search.
c1bc6bb6 276If this is nil, extra highlighting can be \"manually\" removed with
46fe9018 277\\[lazy-highlight-cleanup]."
c1bc6bb6
RS
278 :type 'boolean
279 :group 'lazy-highlight)
6480c508
JB
280(define-obsolete-variable-alias 'isearch-lazy-highlight-cleanup
281 'lazy-highlight-cleanup
282 "22.1")
c1bc6bb6
RS
283
284(defcustom lazy-highlight-initial-delay 0.25
4b65254d 285 "Seconds to wait before beginning to lazily highlight all matches."
c1bc6bb6
RS
286 :type 'number
287 :group 'lazy-highlight)
6480c508
JB
288(define-obsolete-variable-alias 'isearch-lazy-highlight-initial-delay
289 'lazy-highlight-initial-delay
290 "22.1")
c1bc6bb6
RS
291
292(defcustom lazy-highlight-interval 0 ; 0.0625
4b65254d 293 "Seconds between lazily highlighting successive matches."
c1bc6bb6
RS
294 :type 'number
295 :group 'lazy-highlight)
6480c508
JB
296(define-obsolete-variable-alias 'isearch-lazy-highlight-interval
297 'lazy-highlight-interval
298 "22.1")
c1bc6bb6
RS
299
300(defcustom lazy-highlight-max-at-a-time 20
4b65254d
JB
301 "Maximum matches to highlight at a time (for `lazy-highlight').
302Larger values may reduce Isearch's responsiveness to user input;
c1bc6bb6
RS
303smaller values make matches highlight slowly.
304A value of nil means highlight all matches."
305 :type '(choice (const :tag "All" nil)
306 (integer :tag "Some"))
307 :group 'lazy-highlight)
6480c508
JB
308(define-obsolete-variable-alias 'isearch-lazy-highlight-max-at-a-time
309 'lazy-highlight-max-at-a-time
310 "22.1")
c1bc6bb6 311
e3cde0c7 312(defface lazy-highlight
c1bc6bb6
RS
313 '((((class color) (min-colors 88) (background light))
314 (:background "paleturquoise"))
315 (((class color) (min-colors 88) (background dark))
316 (:background "paleturquoise4"))
317 (((class color) (min-colors 16))
318 (:background "turquoise3"))
319 (((class color) (min-colors 8))
320 (:background "turquoise3"))
321 (t (:underline t)))
322 "Face for lazy highlighting of matches other than the current one."
92cc4a30
JL
323 :group 'lazy-highlight
324 :group 'basic-faces)
c4f6e489 325(define-obsolete-face-alias 'isearch-lazy-highlight-face 'lazy-highlight "22.1")
bca92193 326(defvar lazy-highlight-face 'lazy-highlight)
6480c508
JB
327(define-obsolete-variable-alias 'isearch-lazy-highlight-face
328 'lazy-highlight-face
329 "22.1")
c1bc6bb6 330\f
b92368b4
JL
331;; Define isearch help map.
332
333(defvar isearch-help-map
4b65254d 334 (let ((map (make-sparse-keymap)))
b92368b4
JL
335 (define-key map [t] 'isearch-other-control-char)
336 (define-key map (char-to-string help-char) 'isearch-help-for-help)
337 (define-key map [help] 'isearch-help-for-help)
338 (define-key map [f1] 'isearch-help-for-help)
339 (define-key map "?" 'isearch-help-for-help)
340 (define-key map "b" 'isearch-describe-bindings)
341 (define-key map "k" 'isearch-describe-key)
342 (define-key map "m" 'isearch-describe-mode)
343 (define-key map "q" 'help-quit)
344 map)
4b65254d 345 "Keymap for characters following the Help key for Isearch mode.")
b92368b4
JL
346
347(eval-when-compile (require 'help-macro))
348
349(make-help-screen isearch-help-for-help-internal
350 "Type a help option: [bkm] or ?"
351 "You have typed %THIS-KEY%, the help character. Type a Help option:
352\(Type \\<help-map>\\[help-quit] to exit the Help command.)
353
4b65254d
JB
354b Display all Isearch key bindings.
355k KEYS Display full documentation of Isearch key sequence.
356m Display documentation of Isearch mode.
b92368b4
JL
357
358You can't type here other help keys available in the global help map,
4b65254d
JB
359but outside of this help window when you type them in Isearch mode,
360they exit Isearch mode before displaying global help."
b92368b4
JL
361 isearch-help-map)
362
363(defun isearch-help-for-help ()
4b65254d 364 "Display Isearch help menu."
b92368b4
JL
365 (interactive)
366 (let (same-window-buffer-names same-window-regexps)
367 (isearch-help-for-help-internal))
368 (isearch-update))
369
370(defun isearch-describe-bindings ()
4b65254d
JB
371 "Show a list of all keys defined in Isearch mode, and their definitions.
372This is like `describe-bindings', but displays only Isearch keys."
b92368b4
JL
373 (interactive)
374 (let (same-window-buffer-names same-window-regexps)
375 (with-help-window "*Help*"
376 (with-current-buffer standard-output
377 (princ "Isearch Mode Bindings:\n")
378 (princ (substitute-command-keys "\\{isearch-mode-map}"))))))
379
380(defun isearch-describe-key ()
381 "Display documentation of the function invoked by isearch key."
382 (interactive)
383 (let (same-window-buffer-names same-window-regexps)
384 (call-interactively 'describe-key))
385 (isearch-update))
386
387(defun isearch-describe-mode ()
4b65254d 388 "Display documentation of Isearch mode."
b92368b4
JL
389 (interactive)
390 (let (same-window-buffer-names same-window-regexps)
391 (describe-function 'isearch-forward))
392 (isearch-update))
393
394(defalias 'isearch-mode-help 'isearch-describe-mode)
395
396\f
191f025a 397;; Define isearch-mode keymap.
8e1cae6d 398
02b2f510 399(defvar isearch-mode-map
4b65254d
JB
400 (let ((i 0)
401 (map (make-keymap)))
8f924df7 402 (or (char-table-p (nth 1 map))
02b2f510
SM
403 (error "The initialization of isearch-mode-map must be updated"))
404 ;; Make all multibyte characters search for themselves.
6b61353c 405 (set-char-table-range (nth 1 map) (cons #x100 (max-char))
5760cdc1 406 'isearch-printing-char)
6b61353c
KH
407 ;; Make function keys, etc, which aren't bound to a scrolling-function
408 ;; exit the search.
02b2f510
SM
409 (define-key map [t] 'isearch-other-control-char)
410 ;; Control chars, by default, end isearch mode transparently.
b48ca14f 411 ;; We need these explicit definitions because, in a dense keymap,
02b2f510
SM
412 ;; the binding for t does not affect characters.
413 ;; We use a dense keymap to save space.
6480c508 414 (while (< i ?\s)
02b2f510
SM
415 (define-key map (make-string 1 i) 'isearch-other-control-char)
416 (setq i (1+ i)))
417
418 ;; Single-byte printing chars extend the search string by default.
6480c508 419 (setq i ?\s)
02b2f510
SM
420 (while (< i 256)
421 (define-key map (vector i) 'isearch-printing-char)
422 (setq i (1+ i)))
423
424 ;; To handle local bindings with meta char prefix keys, define
425 ;; another full keymap. This must be done for any other prefix
426 ;; keys as well, one full keymap per char of the prefix key. It
427 ;; would be simpler to disable the global keymap, and/or have a
428 ;; default local key binding for any key not otherwise bound.
429 (let ((meta-map (make-sparse-keymap)))
430 (define-key map (char-to-string meta-prefix-char) meta-map)
431 (define-key map [escape] meta-map))
432 (define-key map (vector meta-prefix-char t) 'isearch-other-meta-char)
433
434 ;; Several non-printing chars change the searching behavior.
435 (define-key map "\C-s" 'isearch-repeat-forward)
436 (define-key map "\C-r" 'isearch-repeat-backward)
437 ;; Define M-C-s and M-C-r like C-s and C-r so that the same key
438 ;; combinations can be used to repeat regexp isearches that can
439 ;; be used to start these searches.
440 (define-key map "\M-\C-s" 'isearch-repeat-forward)
441 (define-key map "\M-\C-r" 'isearch-repeat-backward)
442 (define-key map "\177" 'isearch-delete-char)
443 (define-key map "\C-g" 'isearch-abort)
1f4139d5 444
02b2f510
SM
445 ;; This assumes \e is the meta-prefix-char.
446 (or (= ?\e meta-prefix-char)
447 (error "Inconsistency in isearch.el"))
448 (define-key map "\e\e\e" 'isearch-cancel)
449 (define-key map [escape escape escape] 'isearch-cancel)
b48ca14f 450
02b2f510 451 (define-key map "\C-q" 'isearch-quote-char)
08200510 452
02b2f510
SM
453 (define-key map "\r" 'isearch-exit)
454 (define-key map "\C-j" 'isearch-printing-char)
455 (define-key map "\t" 'isearch-printing-char)
ec06d344 456 (define-key map [?\S-\ ] 'isearch-printing-char)
b48ca14f 457
74820eb5
JL
458 (define-key map "\C-w" 'isearch-yank-word-or-char)
459 (define-key map "\M-\C-w" 'isearch-del-char)
460 (define-key map "\M-\C-y" 'isearch-yank-char)
461 (define-key map "\C-y" 'isearch-yank-line)
08200510 462
b92368b4 463 (define-key map "\C-h" isearch-help-map)
08200510 464
02b2f510
SM
465 (define-key map "\M-n" 'isearch-ring-advance)
466 (define-key map "\M-p" 'isearch-ring-retreat)
467 (define-key map "\M-y" 'isearch-yank-kill)
468
469 (define-key map "\M-\t" 'isearch-complete)
470
471 ;; Pass frame events transparently so they won't exit the search.
472 ;; In particular, if we have more than one display open, then a
473 ;; switch-frame might be generated by someone typing at another keyboard.
474 (define-key map [switch-frame] nil)
475 (define-key map [delete-frame] nil)
476 (define-key map [iconify-frame] nil)
477 (define-key map [make-frame-visible] nil)
3f482bc0 478 (define-key map [mouse-movement] nil)
76197e28
JR
479 (define-key map [language-change] nil)
480
02b2f510
SM
481 ;; For searching multilingual text.
482 (define-key map "\C-\\" 'isearch-toggle-input-method)
483 (define-key map "\C-^" 'isearch-toggle-specified-input-method)
484
485 ;; People expect to be able to paste with the mouse.
e4af1426 486 (define-key map [mouse-2] #'isearch-mouse-2)
02b2f510
SM
487 (define-key map [down-mouse-2] nil)
488
489 ;; Some bindings you may want to put in your isearch-mode-hook.
490 ;; Suggest some alternates...
491 (define-key map "\M-c" 'isearch-toggle-case-fold)
492 (define-key map "\M-r" 'isearch-toggle-regexp)
493 (define-key map "\M-e" 'isearch-edit-string)
494
70bc5268
JL
495 (define-key map "\M-sr" 'isearch-toggle-regexp)
496 (define-key map "\M-sw" 'isearch-toggle-word)
497
81e898ea
SM
498 (define-key map [?\M-%] 'isearch-query-replace)
499 (define-key map [?\C-\M-%] 'isearch-query-replace-regexp)
6e3057bb 500 (define-key map "\M-so" 'isearch-occur)
11c9f489 501 (define-key map "\M-shr" 'isearch-highlight-regexp)
74820eb5 502
02b2f510
SM
503 map)
504 "Keymap for `isearch-mode'.")
505
506(defvar minibuffer-local-isearch-map
507 (let ((map (make-sparse-keymap)))
508 (set-keymap-parent map minibuffer-local-map)
74820eb5 509 (define-key map "\r" 'isearch-nonincremental-exit-minibuffer)
02b2f510 510 (define-key map "\M-\t" 'isearch-complete-edit)
74820eb5
JL
511 (define-key map "\C-s" 'isearch-forward-exit-minibuffer)
512 (define-key map "\C-r" 'isearch-reverse-exit-minibuffer)
513 (define-key map "\C-f" 'isearch-yank-char-in-minibuffer)
514 (define-key map [right] 'isearch-yank-char-in-minibuffer)
02b2f510 515 map)
4b65254d 516 "Keymap for editing Isearch strings in the minibuffer.")
8e1cae6d 517
8e1cae6d 518;; Internal variables declared globally for byte-compiler.
08200510
RS
519;; These are all set with setq while isearching
520;; and bound locally while editing the search string.
521
522(defvar isearch-forward nil) ; Searching in the forward direction.
523(defvar isearch-regexp nil) ; Searching for a regexp.
524(defvar isearch-word nil) ; Searching for words.
cd59ea72 525(defvar isearch-hidden nil) ; Non-nil if the string exists but is invisible.
08200510 526
191f025a
SM
527(defvar isearch-cmds nil
528 "Stack of search status sets.
08e3de69
EZ
529Each set is a vector of the form:
530 [STRING MESSAGE POINT SUCCESS FORWARD OTHER-END WORD
531 INVALID-REGEXP WRAPPED BARRIER WITHIN-BRACKETS CASE-FOLD-SEARCH]")
191f025a 532
08200510
RS
533(defvar isearch-string "") ; The current search string.
534(defvar isearch-message "") ; text-char-description version of isearch-string
535
ee9b85a8
JL
536(defvar isearch-message-prefix-add nil) ; Additonal text for the message prefix
537(defvar isearch-message-suffix-add nil) ; Additonal text for the message suffix
538
ba653a53
JL
539(defvar isearch-success t) ; Searching is currently successful.
540(defvar isearch-error nil) ; Error message for failed search.
08200510
RS
541(defvar isearch-other-end nil) ; Start (end) of match if forward (backward).
542(defvar isearch-wrapped nil) ; Searching restarted from the top (bottom).
8e1cae6d 543(defvar isearch-barrier 0)
99ae9e9f 544(defvar isearch-just-started nil)
ddbe3d5f 545(defvar isearch-start-hscroll 0) ; hscroll when starting the search.
8e1cae6d 546
00c42405
SM
547;; case-fold-search while searching.
548;; either nil, t, or 'yes. 'yes means the same as t except that mixed
549;; case in the search string is ignored.
4453091d 550(defvar isearch-case-fold-search nil)
8e1cae6d 551
67085aba
GM
552(defvar isearch-last-case-fold-search nil)
553
ae1a21c6
MB
554;; Used to save default value while isearch is active
555(defvar isearch-original-minibuffer-message-timeout nil)
556
8e1cae6d
JB
557(defvar isearch-adjusted nil)
558(defvar isearch-slow-terminal-mode nil)
191f025a 559;; If t, using a small window.
08200510 560(defvar isearch-small-window nil)
8e1cae6d 561(defvar isearch-opoint 0)
191f025a 562;; The window configuration active at the beginning of the search.
08200510 563(defvar isearch-window-configuration nil)
8e1cae6d 564
08200510
RS
565;; Flag to indicate a yank occurred, so don't move the cursor.
566(defvar isearch-yank-flag nil)
8e1cae6d 567
191f025a
SM
568;; A function to be called after each input character is processed.
569;; (It is not called after characters that exit the search.)
570;; It is only set from an optional argument to `isearch-mode'.
08200510 571(defvar isearch-op-fun nil)
8e1cae6d 572
191f025a 573;; Is isearch-mode in a recursive edit for modal searching.
08200510 574(defvar isearch-recursive-edit nil)
8e1cae6d 575
191f025a 576;; Should isearch be terminated after doing one search?
08200510
RS
577(defvar isearch-nonincremental nil)
578
579;; New value of isearch-forward after isearch-edit-string.
580(defvar isearch-new-forward nil)
8e1cae6d 581
0352b205
RS
582;; Accumulate here the overlays opened during searching.
583(defvar isearch-opened-overlays nil)
8e1cae6d 584
99848db0
KH
585;; The value of input-method-function when isearch is invoked.
586(defvar isearch-input-method-function nil)
587
588;; A flag to tell if input-method-function is locally bound when
589;; isearch is invoked.
590(defvar isearch-input-method-local-p nil)
591
8e1cae6d
JB
592;; Minor-mode-alist changes - kind of redundant with the
593;; echo area, but if isearching in multiple windows, it can be useful.
594
595(or (assq 'isearch-mode minor-mode-alist)
596 (nconc minor-mode-alist
597 (list '(isearch-mode isearch-mode))))
598
08200510 599(defvar isearch-mode nil) ;; Name of the minor mode, if non-nil.
8e1cae6d
JB
600(make-variable-buffer-local 'isearch-mode)
601
fdf5afa4
RS
602(define-key global-map "\C-s" 'isearch-forward)
603(define-key esc-map "\C-s" 'isearch-forward-regexp)
604(define-key global-map "\C-r" 'isearch-backward)
605(define-key esc-map "\C-r" 'isearch-backward-regexp)
70bc5268 606(define-key search-map "w" 'isearch-forward-word)
fdf5afa4 607
191f025a 608;; Entry points to isearch-mode.
8e1cae6d 609
eceee2c0 610(defun isearch-forward (&optional regexp-p no-recursive-edit)
8e1cae6d
JB
611 "\
612Do incremental search forward.
08200510
RS
613With a prefix argument, do an incremental regular expression search instead.
614\\<isearch-mode-map>
8e1cae6d 615As you type characters, they add to the search string and are found.
b48ca14f 616The following non-printing keys are bound in `isearch-mode-map'.
8e1cae6d 617
35904fd3 618Type \\[isearch-delete-char] to cancel last input item from end of search string.
8e1cae6d 619Type \\[isearch-exit] to exit, leaving point at location found.
08200510
RS
620Type LFD (C-j) to match end of line.
621Type \\[isearch-repeat-forward] to search again forward,\
622 \\[isearch-repeat-backward] to search again backward.
0ae85960
RS
623Type \\[isearch-yank-word-or-char] to yank next word or character in buffer
624 onto the end of the search string, and search for it.
74820eb5
JL
625Type \\[isearch-del-char] to delete character from end of search string.
626Type \\[isearch-yank-char] to yank char from buffer onto end of search\
08200510
RS
627 string and search for it.
628Type \\[isearch-yank-line] to yank rest of line onto end of search string\
629 and search for it.
75a07f2c 630Type \\[isearch-yank-kill] to yank the last string of killed text.
8e1cae6d 631Type \\[isearch-quote-char] to quote control character to search for it.
08200510
RS
632\\[isearch-abort] while searching or when search has failed cancels input\
633 back to what has
634 been found successfully.
635\\[isearch-abort] when search is successful aborts and moves point to\
636 starting point.
8e1cae6d 637
b3612973
RS
638If you try to exit with the search string still empty, it invokes
639 nonincremental search.
640
6c551d4e
EZ
641Type \\[isearch-toggle-case-fold] to toggle search case-sensitivity.
642Type \\[isearch-toggle-regexp] to toggle regular-expression mode.
70bc5268 643Type \\[isearch-toggle-word] to toggle word mode.
6c551d4e
EZ
644Type \\[isearch-edit-string] to edit the search string in the minibuffer.
645
8e1cae6d
JB
646Also supported is a search ring of the previous 16 search strings.
647Type \\[isearch-ring-advance] to search for the next item in the search ring.
08200510
RS
648Type \\[isearch-ring-retreat] to search for the previous item in the search\
649 ring.
650Type \\[isearch-complete] to complete the search string using the search ring.
8e1cae6d 651
70bc5268
JL
652Type \\[isearch-query-replace] to run `query-replace' with string to\
653 replace from last search string.
654Type \\[isearch-query-replace-regexp] to run `query-replace-regexp'\
655 with the last search string.
656Type \\[isearch-occur] to run `occur' that shows\
657 the last search string.
658Type \\[isearch-highlight-regexp] to run `highlight-regexp'\
659 that highlights the last search string.
660
4b65254d
JB
661Type \\[isearch-describe-bindings] to display all Isearch key bindings.
662Type \\[isearch-describe-key] to display documentation of Isearch key.
663Type \\[isearch-describe-mode] to display documentation of Isearch mode.
b92368b4 664
1e14b095 665If an input method is turned on in the current buffer, that input
4b65254d
JB
666method is also active while you are typing characters to search.
667To toggle the input method, type \\[isearch-toggle-input-method]. \
668It also toggles the input
669method in the current buffer.
37b20c9b 670
4b65254d
JB
671To use a different input method for searching, type \
672\\[isearch-toggle-specified-input-method],
673and specify an input method you want to use.
37b20c9b 674
b48ca14f 675The above keys, bound in `isearch-mode-map', are often controlled by
35904fd3 676 options; do \\[apropos] on search-.* to find them.
8e1cae6d 677Other control and meta characters terminate the search
08200510 678 and are then executed normally (depending on `search-exit-option').
fd49e05c 679Likewise for function keys and mouse button events.
8e1cae6d 680
08200510
RS
681If this function is called non-interactively, it does not return to
682the calling function until the search is done."
8e1cae6d 683
eceee2c0 684 (interactive "P\np")
4ae7d00a 685 (isearch-mode t (not (null regexp-p)) nil (not no-recursive-edit)))
8e1cae6d 686
eceee2c0 687(defun isearch-forward-regexp (&optional not-regexp no-recursive-edit)
8e1cae6d
JB
688 "\
689Do incremental search forward for regular expression.
08200510 690With a prefix argument, do a regular string search instead.
8938c0bc
JL
691Like ordinary incremental search except that your input is treated
692as a regexp. See the command `isearch-forward' for more information.
ab67e8b6
RS
693
694In regexp incremental searches, a space or spaces normally matches
695any whitespace (the variable `search-whitespace-regexp' controls
696precisely what that means). If you want to search for a literal space
1b1fb2ef 697and nothing else, enter C-q SPC."
eceee2c0 698 (interactive "P\np")
4ae7d00a 699 (isearch-mode t (null not-regexp) nil (not no-recursive-edit)))
8e1cae6d 700
70bc5268
JL
701(defun isearch-forward-word (&optional not-word no-recursive-edit)
702 "\
703Do incremental search forward for a sequence of words.
704With a prefix argument, do a regular string search instead.
8938c0bc
JL
705Like ordinary incremental search except that your input is treated
706as a sequence of words without regard to how the words are separated.
707See the command `isearch-forward' for more information."
70bc5268
JL
708 (interactive "P\np")
709 (isearch-mode t nil nil (not no-recursive-edit) (null not-word)))
710
eceee2c0 711(defun isearch-backward (&optional regexp-p no-recursive-edit)
8e1cae6d
JB
712 "\
713Do incremental search backward.
08200510 714With a prefix argument, do a regular expression search instead.
8938c0bc 715See the command `isearch-forward' for more information."
eceee2c0 716 (interactive "P\np")
4ae7d00a 717 (isearch-mode nil (not (null regexp-p)) nil (not no-recursive-edit)))
8e1cae6d 718
eceee2c0 719(defun isearch-backward-regexp (&optional not-regexp no-recursive-edit)
8e1cae6d
JB
720 "\
721Do incremental search backward for regular expression.
08200510 722With a prefix argument, do a regular string search instead.
8938c0bc
JL
723Like ordinary incremental search except that your input is treated
724as a regexp. See the command `isearch-forward' for more information."
eceee2c0 725 (interactive "P\np")
4ae7d00a 726 (isearch-mode nil (null not-regexp) nil (not no-recursive-edit)))
08200510 727
8e1cae6d 728\f
8e1cae6d
JB
729;; isearch-mode only sets up incremental search for the minor mode.
730;; All the work is done by the isearch-mode commands.
731
08200510 732;; Not used yet:
d7fa5aa2 733;;(defvar isearch-commands '(isearch-forward isearch-backward
08200510
RS
734;; isearch-forward-regexp isearch-backward-regexp)
735;; "List of commands for which isearch-mode does not recursive-edit.")
b48ca14f 736
08200510
RS
737
738(defun isearch-mode (forward &optional regexp op-fun recursive-edit word-p)
4b65254d 739 "Start Isearch minor mode.
b92368b4 740It is called by the function `isearch-forward' and other related functions."
8e1cae6d
JB
741
742 ;; Initialize global vars.
743 (setq isearch-forward forward
744 isearch-regexp regexp
08200510 745 isearch-word word-p
8e1cae6d 746 isearch-op-fun op-fun
67085aba 747 isearch-last-case-fold-search isearch-case-fold-search
8e1cae6d
JB
748 isearch-case-fold-search case-fold-search
749 isearch-string ""
750 isearch-message ""
751 isearch-cmds nil
752 isearch-success t
753 isearch-wrapped nil
754 isearch-barrier (point)
755 isearch-adjusted nil
756 isearch-yank-flag nil
ba653a53 757 isearch-error nil
0cabad13 758 isearch-slow-terminal-mode (and (<= baud-rate search-slow-speed)
8e1cae6d 759 (> (window-height)
fad241d3
RS
760 (* 4
761 (abs search-slow-window-lines))))
8e1cae6d
JB
762 isearch-other-end nil
763 isearch-small-window nil
99ae9e9f 764 isearch-just-started t
ddbe3d5f 765 isearch-start-hscroll (window-hscroll)
8e1cae6d 766
8e1cae6d 767 isearch-opoint (point)
a5dcf63f 768 search-ring-yank-pointer nil
0352b205 769 isearch-opened-overlays nil
99848db0
KH
770 isearch-input-method-function input-method-function
771 isearch-input-method-local-p (local-variable-p 'input-method-function)
ae1a21c6
MB
772 regexp-search-ring-yank-pointer nil
773
774 ;; Save the original value of `minibuffer-message-timeout', and
775 ;; set it to nil so that isearch's messages don't get timed out.
776 isearch-original-minibuffer-message-timeout minibuffer-message-timeout
777 minibuffer-message-timeout nil)
99848db0
KH
778
779 ;; We must bypass input method while reading key. When a user type
780 ;; printable character, appropriate input method is turned on in
380866a2 781 ;; minibuffer to read multibyte characters.
99848db0
KH
782 (or isearch-input-method-local-p
783 (make-local-variable 'input-method-function))
784 (setq input-method-function nil)
785
99ae9e9f 786 (looking-at "")
292a8dff
RS
787 (setq isearch-window-configuration
788 (if isearch-slow-terminal-mode (current-window-configuration) nil))
70418205 789
18ce7555
RS
790 ;; Maybe make minibuffer frame visible and/or raise it.
791 (let ((frame (window-frame (minibuffer-window))))
360e0dd5
RS
792 (unless (memq (frame-live-p frame) '(nil t))
793 (unless (frame-visible-p frame)
794 (make-frame-visible frame))
795 (if minibuffer-auto-raise
796 (raise-frame frame))))
18ce7555 797
8e1cae6d 798 (setq isearch-mode " Isearch") ;; forward? regexp?
1cd3732c 799 (force-mode-line-update)
8e1cae6d
JB
800
801 (isearch-push-state)
802
c7955222 803 (setq overriding-terminal-local-map isearch-mode-map)
8e1cae6d 804 (run-hooks 'isearch-mode-hook)
5ce25ae7 805 (isearch-update)
08200510 806
bfe2d334 807 (add-hook 'mouse-leave-buffer-hook 'isearch-done)
7e56ea04 808 (add-hook 'kbd-macro-termination-hook 'isearch-done)
6e5cd0ae 809
b48ca14f
JB
810 ;; isearch-mode can be made modal (in the sense of not returning to
811 ;; the calling function until searching is completed) by entering
08200510 812 ;; a recursive-edit and exiting it when done isearching.
130bf67c
RS
813 (if recursive-edit
814 (let ((isearch-recursive-edit t))
815 (recursive-edit)))
0daa17f3 816 isearch-success)
8e1cae6d
JB
817
818
8e1cae6d
JB
819;; Some high level utilities. Others below.
820
821(defun isearch-update ()
191f025a 822 ;; Called after each command to update the display.
4c01d4bd
RS
823 (if (and (null unread-command-events)
824 (null executing-kbd-macro))
8e1cae6d 825 (progn
c982ab21 826 (if (not (input-pending-p))
ac475d3a
JL
827 (if isearch-message-function
828 (funcall isearch-message-function)
829 (isearch-message)))
c982ab21 830 (if (and isearch-slow-terminal-mode
b48ca14f 831 (not (or isearch-small-window
c982ab21
GM
832 (pos-visible-in-window-p))))
833 (let ((found-point (point)))
834 (setq isearch-small-window t)
835 (move-to-window-line 0)
836 (let ((window-min-height 1))
837 (split-window nil (if (< search-slow-window-lines 0)
838 (1+ (- search-slow-window-lines))
839 (- (window-height)
840 (1+ search-slow-window-lines)))))
841 (if (< search-slow-window-lines 0)
842 (progn (vertical-motion (- 1 search-slow-window-lines))
843 (set-window-start (next-window) (point))
844 (set-window-hscroll (next-window)
845 (window-hscroll))
846 (set-window-hscroll (selected-window) 0))
847 (other-window 1))
ddbe3d5f
RS
848 (goto-char found-point))
849 ;; Keep same hscrolling as at the start of the search when possible
850 (let ((current-scroll (window-hscroll)))
851 (set-window-hscroll (selected-window) isearch-start-hscroll)
852 (unless (pos-visible-in-window-p)
853 (set-window-hscroll (selected-window) current-scroll))))
854 (if isearch-other-end
c982ab21
GM
855 (if (< isearch-other-end (point)) ; isearch-forward?
856 (isearch-highlight isearch-other-end (point))
857 (isearch-highlight (point) isearch-other-end))
4dbbcb46 858 (isearch-dehighlight))
c982ab21 859 ))
8e1cae6d
JB
860 (setq ;; quit-flag nil not for isearch-mode
861 isearch-adjusted nil
862 isearch-yank-flag nil)
f9114cec 863 (when isearch-lazy-highlight
d9dd1f33 864 (isearch-lazy-highlight-new-loop))
a5cc922e
KH
865 ;; We must prevent the point moving to the end of composition when a
866 ;; part of the composition has just been searched.
867 (setq disable-point-adjustment t))
8e1cae6d 868
0daa17f3 869(defun isearch-done (&optional nopush edit)
87e97673
RS
870 "Exit Isearch mode.
871For successful search, pass no args.
872For a failing search, NOPUSH is t.
873For going to the minibuffer to edit the search string,
874NOPUSH is t and EDIT is t."
875
00098b01 876 (if isearch-resume-in-command-history
6848c9f1
KS
877 (let ((command `(isearch-resume ,isearch-string ,isearch-regexp
878 ,isearch-word ,isearch-forward
879 ,isearch-message
880 ',isearch-case-fold-search)))
881 (unless (equal (car command-history) command)
882 (setq command-history (cons command command-history)))))
c40a4de1 883
bfe2d334 884 (remove-hook 'mouse-leave-buffer-hook 'isearch-done)
7e56ea04 885 (remove-hook 'kbd-macro-termination-hook 'isearch-done)
d196f58d
GM
886 (setq isearch-lazy-highlight-start nil)
887
8e1cae6d 888 ;; Called by all commands that terminate isearch-mode.
35a4d143 889 ;; If NOPUSH is non-nil, we don't push the string on the search ring.
c7955222 890 (setq overriding-terminal-local-map nil)
08200510 891 ;; (setq pre-command-hook isearch-old-pre-command-hook) ; for lemacs
ae1a21c6 892 (setq minibuffer-message-timeout isearch-original-minibuffer-message-timeout)
4dbbcb46 893 (isearch-dehighlight)
46fe9018 894 (lazy-highlight-cleanup lazy-highlight-cleanup)
08200510
RS
895 (let ((found-start (window-start (selected-window)))
896 (found-point (point)))
d8a4fc44
RS
897 (when isearch-window-configuration
898 (set-window-configuration isearch-window-configuration)
899 (if isearch-small-window
900 (goto-char found-point)
901 ;; set-window-configuration clobbers window-start; restore it.
902 ;; This has an annoying side effect of clearing the last_modiff
903 ;; field of the window, which can cause unwanted scrolling,
904 ;; so don't do it unless truly necessary.
905 (set-window-start (selected-window) found-start t))))
08200510
RS
906
907 (setq isearch-mode nil)
99848db0
KH
908 (if isearch-input-method-local-p
909 (setq input-method-function isearch-input-method-function)
910 (kill-local-variable 'input-method-function))
911
1cd3732c 912 (force-mode-line-update)
8e1cae6d 913
df01192b
RS
914 ;; If we ended in the middle of some intangible text,
915 ;; move to the further end of that intangible text.
916 (let ((after (if (eobp) nil
917 (get-text-property (point) 'intangible)))
918 (before (if (bobp) nil
919 (get-text-property (1- (point)) 'intangible))))
920 (when (and before after (eq before after))
921 (if isearch-forward
922 (goto-char (next-single-property-change (point) 'intangible))
923 (goto-char (previous-single-property-change (point) 'intangible)))))
924
35a4d143 925 (if (and (> (length isearch-string) 0) (not nopush))
8e1cae6d 926 ;; Update the ring data.
73d2bf95 927 (isearch-update-ring isearch-string isearch-regexp))
8e1cae6d 928
87e97673
RS
929 (let ((isearch-mode-end-hook-quit (and nopush (not edit))))
930 (run-hooks 'isearch-mode-end-hook))
071fdd66
JL
931
932 ;; If there was movement, mark the starting position.
4837b516 933 ;; Maybe should test difference between and set mark only if > threshold.
071fdd66
JL
934 (if (/= (point) isearch-opoint)
935 (or (and transient-mark-mode mark-active)
936 (progn
937 (push-mark isearch-opoint t)
938 (or executing-kbd-macro (> (minibuffer-depth) 0)
939 (message "Mark saved where search started")))))
940
0daa17f3 941 (and (not edit) isearch-recursive-edit (exit-recursive-edit)))
08200510 942
73d2bf95
RS
943(defun isearch-update-ring (string &optional regexp)
944 "Add STRING to the beginning of the search ring.
a2b7dcc7 945REGEXP if non-nil says use the regexp search ring."
77e5aef9
KS
946 (add-to-history
947 (if regexp 'regexp-search-ring 'search-ring)
948 string
949 (if regexp regexp-search-ring-max search-ring-max)))
73d2bf95 950
191f025a
SM
951;; Switching buffers should first terminate isearch-mode.
952;; ;; For Emacs 19, the frame switch event is handled.
953;; (defun isearch-switch-frame-handler ()
954;; (interactive) ;; Is this necessary?
955;; ;; First terminate isearch-mode.
956;; (isearch-done)
957;; (isearch-clean-overlays)
8989a920 958;; (handle-switch-frame (car (cdr last-command-event))))
08200510 959
8e1cae6d 960\f
08e3de69
EZ
961;; The search status structure and stack.
962
1a699acf 963(defsubst isearch-string-state (frame)
08e3de69 964 "Return the search string in FRAME."
3eec7894 965 (aref frame 0))
1a699acf 966(defsubst isearch-message-state (frame)
08e3de69 967 "Return the search string to display to the user in FRAME."
3eec7894 968 (aref frame 1))
1a699acf 969(defsubst isearch-point-state (frame)
08e3de69 970 "Return the point in FRAME."
3eec7894 971 (aref frame 2))
1a699acf 972(defsubst isearch-success-state (frame)
08e3de69 973 "Return the success flag in FRAME."
3eec7894 974 (aref frame 3))
1a699acf 975(defsubst isearch-forward-state (frame)
08e3de69 976 "Return the searching-forward flag in FRAME."
3eec7894 977 (aref frame 4))
1a699acf 978(defsubst isearch-other-end-state (frame)
08e3de69 979 "Return the other end of the match in FRAME."
3eec7894 980 (aref frame 5))
1a699acf 981(defsubst isearch-word-state (frame)
08e3de69 982 "Return the search-by-word flag in FRAME."
3eec7894 983 (aref frame 6))
ba653a53 984(defsubst isearch-error-state (frame)
08e3de69 985 "Return the regexp error message in FRAME, or nil if its regexp is valid."
3eec7894 986 (aref frame 7))
1a699acf 987(defsubst isearch-wrapped-state (frame)
08e3de69 988 "Return the search-wrapped flag in FRAME."
3eec7894 989 (aref frame 8))
1a699acf 990(defsubst isearch-barrier-state (frame)
08e3de69 991 "Return the barrier value in FRAME."
3eec7894 992 (aref frame 9))
1a699acf 993(defsubst isearch-case-fold-search-state (frame)
08e3de69 994 "Return the case-folding flag in FRAME."
ba653a53 995 (aref frame 10))
6a18e4e7 996(defsubst isearch-pop-fun-state (frame)
4b65254d 997 "Return the function restoring the mode-specific Isearch state in FRAME."
ba653a53 998 (aref frame 11))
08e3de69
EZ
999
1000(defun isearch-top-state ()
1001 (let ((cmd (car isearch-cmds)))
1a699acf
JL
1002 (setq isearch-string (isearch-string-state cmd)
1003 isearch-message (isearch-message-state cmd)
1004 isearch-success (isearch-success-state cmd)
1005 isearch-forward (isearch-forward-state cmd)
1006 isearch-other-end (isearch-other-end-state cmd)
1007 isearch-word (isearch-word-state cmd)
ba653a53 1008 isearch-error (isearch-error-state cmd)
1a699acf
JL
1009 isearch-wrapped (isearch-wrapped-state cmd)
1010 isearch-barrier (isearch-barrier-state cmd)
1a699acf 1011 isearch-case-fold-search (isearch-case-fold-search-state cmd))
6a18e4e7
JL
1012 (if (functionp (isearch-pop-fun-state cmd))
1013 (funcall (isearch-pop-fun-state cmd) cmd))
1a699acf 1014 (goto-char (isearch-point-state cmd))))
08e3de69
EZ
1015
1016(defun isearch-pop-state ()
1017 (setq isearch-cmds (cdr isearch-cmds))
1018 (isearch-top-state))
1019
1020(defun isearch-push-state ()
1021 (setq isearch-cmds
1022 (cons (vector isearch-string isearch-message (point)
1023 isearch-success isearch-forward isearch-other-end
1024 isearch-word
ba653a53
JL
1025 isearch-error isearch-wrapped isearch-barrier
1026 isearch-case-fold-search
6a18e4e7
JL
1027 (if isearch-push-state-function
1028 (funcall isearch-push-state-function)))
08e3de69
EZ
1029 isearch-cmds)))
1030
1031\f
8e1cae6d
JB
1032;; Commands active while inside of the isearch minor mode.
1033
1034(defun isearch-exit ()
1035 "Exit search normally.
1036However, if this is the first command after starting incremental
1037search and `search-nonincremental-instead' is non-nil, do a
08200510 1038nonincremental search instead via `isearch-edit-string'."
8e1cae6d 1039 (interactive)
b48ca14f 1040 (if (and search-nonincremental-instead
8e1cae6d 1041 (= 0 (length isearch-string)))
08200510
RS
1042 (let ((isearch-nonincremental t))
1043 (isearch-edit-string)))
0352b205
RS
1044 (isearch-done)
1045 (isearch-clean-overlays))
8e1cae6d
JB
1046
1047
1048(defun isearch-edit-string ()
08200510
RS
1049 "Edit the search string in the minibuffer.
1050The following additional command keys are active while editing.
1051\\<minibuffer-local-isearch-map>
1052\\[exit-minibuffer] to resume incremental searching with the edited string.
1053\\[isearch-nonincremental-exit-minibuffer] to do one nonincremental search.
1054\\[isearch-forward-exit-minibuffer] to resume isearching forward.
8eb40e74 1055\\[isearch-reverse-exit-minibuffer] to resume isearching backward.
08200510 1056\\[isearch-complete-edit] to complete the search string using the search ring.
8eb40e74 1057\\<isearch-mode-map>
74820eb5 1058If first char entered is \\[isearch-yank-word-or-char], then do word search instead."
08200510
RS
1059
1060 ;; This code is very hairy for several reasons, explained in the code.
1061 ;; Mainly, isearch-mode must be terminated while editing and then restarted.
1062 ;; If there were a way to catch any change of buffer from the minibuffer,
1063 ;; this could be simplified greatly.
eb8c3be9 1064 ;; Editing doesn't back up the search point. Should it?
8e1cae6d 1065 (interactive)
08200510 1066 (condition-case err
e900ced4
RS
1067 (progn
1068 (let ((isearch-nonincremental isearch-nonincremental)
1069
1070 ;; Locally bind all isearch global variables to protect them
1071 ;; from recursive isearching.
1072 ;; isearch-string -message and -forward are not bound
1073 ;; so they may be changed. Instead, save the values.
1074 (isearch-new-string isearch-string)
1075 (isearch-new-message isearch-message)
1076 (isearch-new-forward isearch-forward)
1077 (isearch-new-word isearch-word)
1078
1079 (isearch-regexp isearch-regexp)
1080 (isearch-op-fun isearch-op-fun)
1081 (isearch-cmds isearch-cmds)
1082 (isearch-success isearch-success)
1083 (isearch-wrapped isearch-wrapped)
1084 (isearch-barrier isearch-barrier)
1085 (isearch-adjusted isearch-adjusted)
1086 (isearch-yank-flag isearch-yank-flag)
ba653a53 1087 (isearch-error isearch-error)
e900ced4
RS
1088 ;;; Don't bind this. We want isearch-search, below, to set it.
1089 ;;; And the old value won't matter after that.
1090 ;;; (isearch-other-end isearch-other-end)
1091 ;;; Perhaps some of these other variables should be bound for a
1092 ;;; shorter period, ending before the next isearch-search.
1093 ;;; But there doesn't seem to be a real bug, so let's not risk it now.
1094 (isearch-opoint isearch-opoint)
1095 (isearch-slow-terminal-mode isearch-slow-terminal-mode)
1096 (isearch-small-window isearch-small-window)
1097 (isearch-recursive-edit isearch-recursive-edit)
1098 ;; Save current configuration so we can restore it here.
1099 (isearch-window-configuration (current-window-configuration))
ae1a21c6
MB
1100
1101 ;; Temporarily restore `minibuffer-message-timeout'.
1102 (minibuffer-message-timeout
1103 isearch-original-minibuffer-message-timeout)
1104 (isearch-original-minibuffer-message-timeout
1105 isearch-original-minibuffer-message-timeout)
02b99a17 1106 old-point old-other-end)
e900ced4
RS
1107
1108 ;; Actually terminate isearching until editing is done.
b48ca14f 1109 ;; This is so that the user can do anything without failure,
e900ced4
RS
1110 ;; like switch buffers and start another isearch, and return.
1111 (condition-case err
1112 (isearch-done t t)
1113 (exit nil)) ; was recursive editing
1114
02b99a17
JL
1115 ;; Save old point and isearch-other-end before reading from minibuffer
1116 ;; that can change their values.
1117 (setq old-point (point) old-other-end isearch-other-end)
1118
e900ced4 1119 (unwind-protect
c16e87ee 1120 (let* ((message-log-max nil)
e900ced4
RS
1121 ;; Binding minibuffer-history-symbol to nil is a work-around
1122 ;; for some incompatibility with gmhist.
c16e87ee 1123 (minibuffer-history-symbol))
e900ced4 1124 (setq isearch-new-string
e5feeb31
SM
1125 (read-from-minibuffer
1126 (isearch-message-prefix nil nil isearch-nonincremental)
1127 isearch-string
1128 minibuffer-local-isearch-map nil
363de02e
JL
1129 (if isearch-regexp
1130 (cons 'regexp-search-ring
1131 (1+ (or regexp-search-ring-yank-pointer -1)))
1132 (cons 'search-ring
1133 (1+ (or search-ring-yank-pointer -1))))
e5feeb31 1134 nil t)
e900ced4
RS
1135 isearch-new-message
1136 (mapconcat 'isearch-text-char-description
1137 isearch-new-string "")))
02b99a17
JL
1138
1139 ;; Set point at the start (end) of old match if forward (backward),
1140 ;; so after exiting minibuffer isearch resumes at the start (end)
1141 ;; of this match and can find it again.
1142 (if (and old-other-end (eq old-point (point))
1143 (eq isearch-forward isearch-new-forward))
1144 (goto-char old-other-end))
1145
e900ced4 1146 ;; Always resume isearching by restarting it.
b48ca14f
JB
1147 (isearch-mode isearch-forward
1148 isearch-regexp
1149 isearch-op-fun
e900ced4
RS
1150 nil
1151 isearch-word)
1152
1153 ;; Copy new local values to isearch globals
1154 (setq isearch-string isearch-new-string
1155 isearch-message isearch-new-message
1156 isearch-forward isearch-new-forward
1157 isearch-word isearch-new-word))
1158
1159 ;; Empty isearch-string means use default.
1160 (if (= 0 (length isearch-string))
1161 (setq isearch-string (or (car (if isearch-regexp
1162 regexp-search-ring
1163 search-ring))
8cc3c821
RS
1164 "")
1165
1166 isearch-message
1167 (mapconcat 'isearch-text-char-description
1168 isearch-string ""))
e900ced4
RS
1169 ;; This used to set the last search string,
1170 ;; but I think it is not right to do that here.
1171 ;; Only the string actually used should be saved.
1172 ))
1173
a71a98cf
JL
1174 ;; This used to push the state as of before this C-s, but it adds
1175 ;; an inconsistent state where part of variables are from the
1176 ;; previous search (e.g. `isearch-success'), and part of variables
1177 ;; are just entered from the minibuffer (e.g. `isearch-string').
1178 ;; (isearch-push-state)
08200510
RS
1179
1180 ;; Reinvoke the pending search.
08200510 1181 (isearch-search)
a71a98cf 1182 (isearch-push-state) ; this pushes the correct state
08200510 1183 (isearch-update)
b48ca14f 1184 (if isearch-nonincremental
08200510
RS
1185 (progn
1186 ;; (sit-for 1) ;; needed if isearch-done does: (message "")
40c7f256
RS
1187 (isearch-done)
1188 ;; The search done message is confusing when the string
1189 ;; is empty, so erase it.
1190 (if (equal isearch-string "")
1191 (message "")))))
8e1cae6d 1192
08200510
RS
1193 (quit ; handle abort-recursive-edit
1194 (isearch-abort) ;; outside of let to restore outside global values
1195 )))
1196
1197(defun isearch-nonincremental-exit-minibuffer ()
1198 (interactive)
1199 (setq isearch-nonincremental t)
1200 (exit-minibuffer))
1201
1202(defun isearch-forward-exit-minibuffer ()
1203 (interactive)
1204 (setq isearch-new-forward t)
1205 (exit-minibuffer))
8e1cae6d 1206
08200510 1207(defun isearch-reverse-exit-minibuffer ()
8e1cae6d 1208 (interactive)
08200510
RS
1209 (setq isearch-new-forward nil)
1210 (exit-minibuffer))
1211
19993c54
RS
1212(defun isearch-cancel ()
1213 "Terminate the search and go back to the starting point."
1214 (interactive)
6a18e4e7
JL
1215 (if (functionp (isearch-pop-fun-state (car (last isearch-cmds))))
1216 (funcall (isearch-pop-fun-state (car (last isearch-cmds)))
1217 (car (last isearch-cmds))))
19993c54 1218 (goto-char isearch-opoint)
6a18e4e7 1219 (isearch-done t) ; exit isearch
0352b205 1220 (isearch-clean-overlays)
6a18e4e7 1221 (signal 'quit nil)) ; and pass on quit signal
08200510
RS
1222
1223(defun isearch-abort ()
b7852303 1224 "Abort incremental search mode if searching is successful, signaling quit.
08200510 1225Otherwise, revert to previous successful search and continue searching.
b7852303 1226Use `isearch-exit' to quit without signaling."
08200510 1227 (interactive)
eb8c3be9 1228;; (ding) signal instead below, if quitting
8e1cae6d
JB
1229 (discard-input)
1230 (if isearch-success
1231 ;; If search is successful, move back to starting point
1232 ;; and really do quit.
6a18e4e7
JL
1233 (progn
1234 (setq isearch-success nil)
1235 (isearch-cancel))
925a67ca
RS
1236 ;; If search is failing, or has an incomplete regexp,
1237 ;; rub out until it is once more successful.
ba653a53 1238 (while (or (not isearch-success) isearch-error)
925a67ca 1239 (isearch-pop-state))
8e1cae6d
JB
1240 (isearch-update)))
1241
8e1cae6d
JB
1242(defun isearch-repeat (direction)
1243 ;; Utility for isearch-repeat-forward and -backward.
1244 (if (eq isearch-forward (eq direction 'forward))
1245 ;; C-s in forward or C-r in reverse.
1246 (if (equal isearch-string "")
1247 ;; If search string is empty, use last one.
ece75c05
JL
1248 (if (null (if isearch-regexp regexp-search-ring search-ring))
1249 (setq isearch-error "No previous search string")
1250 (setq isearch-string
1251 (if isearch-regexp
1252 (car regexp-search-ring)
1253 (car search-ring))
1254 isearch-message
1255 (mapconcat 'isearch-text-char-description
1256 isearch-string "")
1257 isearch-case-fold-search isearch-last-case-fold-search))
8e1cae6d
JB
1258 ;; If already have what to search for, repeat it.
1259 (or isearch-success
02b2f510 1260 (progn
ba653a53
JL
1261 ;; Set isearch-wrapped before calling isearch-wrap-function
1262 (setq isearch-wrapped t)
6a18e4e7
JL
1263 (if isearch-wrap-function
1264 (funcall isearch-wrap-function)
ba653a53 1265 (goto-char (if isearch-forward (point-min) (point-max)))))))
8e1cae6d 1266 ;; C-s in reverse or C-r in forward, change direction.
f4c49513
RS
1267 (setq isearch-forward (not isearch-forward)
1268 isearch-success t))
8e1cae6d
JB
1269
1270 (setq isearch-barrier (point)) ; For subsequent \| if regexp.
6fefdc4b
RS
1271
1272 (if (equal isearch-string "")
1273 (setq isearch-success t)
512bfd85
RS
1274 (if (and isearch-success
1275 (equal (point) isearch-other-end)
99ae9e9f 1276 (not isearch-just-started))
8e1cae6d
JB
1277 ;; If repeating a search that found
1278 ;; an empty string, ensure we advance.
6fefdc4b
RS
1279 (if (if isearch-forward (eobp) (bobp))
1280 ;; If there's nowhere to advance to, fail (and wrap next time).
1281 (progn
1282 (setq isearch-success nil)
1283 (ding))
1284 (forward-char (if isearch-forward 1 -1))
1285 (isearch-search))
1286 (isearch-search)))
1287
8e1cae6d
JB
1288 (isearch-push-state)
1289 (isearch-update))
1290
1291(defun isearch-repeat-forward ()
1292 "Repeat incremental search forwards."
1293 (interactive)
1294 (isearch-repeat 'forward))
1295
1296(defun isearch-repeat-backward ()
1297 "Repeat incremental search backwards."
1298 (interactive)
1299 (isearch-repeat 'backward))
1300
1301(defun isearch-toggle-regexp ()
1302 "Toggle regexp searching on or off."
1303 ;; The status stack is left unchanged.
1304 (interactive)
1305 (setq isearch-regexp (not isearch-regexp))
08200510 1306 (if isearch-regexp (setq isearch-word nil))
d85519bb 1307 (setq isearch-success t isearch-adjusted t)
8e1cae6d
JB
1308 (isearch-update))
1309
70bc5268
JL
1310(defun isearch-toggle-word ()
1311 "Toggle word searching on or off."
1312 (interactive)
1313 (setq isearch-word (not isearch-word))
1314 (setq isearch-success t isearch-adjusted t)
1315 (isearch-update))
1316
4453091d
RS
1317(defun isearch-toggle-case-fold ()
1318 "Toggle case folding in searching on or off."
1319 (interactive)
1320 (setq isearch-case-fold-search
1321 (if isearch-case-fold-search nil 'yes))
a56687f1
KH
1322 (let ((message-log-max nil))
1323 (message "%s%s [case %ssensitive]"
1324 (isearch-message-prefix nil nil isearch-nonincremental)
1325 isearch-message
1326 (if isearch-case-fold-search "in" "")))
d85519bb 1327 (setq isearch-success t isearch-adjusted t)
4453091d
RS
1328 (sit-for 1)
1329 (isearch-update))
1330
9d14752f
JL
1331(defun isearch-query-replace (&optional delimited regexp-flag)
1332 "Start `query-replace' with string to replace from last search string.
1333The arg DELIMITED (prefix arg if interactive), if non-nil, means replace
1334only matches surrounded by word boundaries. Note that using the prefix arg
1335is possible only when `isearch-allow-scroll' is non-nil, and it don't
1336always provides the correct matches for `query-replace', so the preferred
1337way to run word replacements from Isearch is `M-s w ... M-%'."
1338 (interactive
1339 (list current-prefix-arg))
81e898ea 1340 (barf-if-buffer-read-only)
d85519bb 1341 (if regexp-flag (setq isearch-regexp t))
6e3057bb
JL
1342 (let ((case-fold-search isearch-case-fold-search)
1343 ;; set `search-upper-case' to nil to not call
1344 ;; `isearch-no-upper-case-p' in `perform-replace'
8d32ed64
JL
1345 (search-upper-case nil)
1346 ;; Set `isearch-recursive-edit' to nil to prevent calling
1347 ;; `exit-recursive-edit' in `isearch-done' that terminates
1348 ;; the execution of this command when it is non-nil.
1349 ;; We call `exit-recursive-edit' explicitly at the end below.
1350 (isearch-recursive-edit nil))
1351 (isearch-done nil t)
74820eb5 1352 (isearch-clean-overlays)
e7e4ea21
JL
1353 (if (and isearch-other-end
1354 (< isearch-other-end (point))
d85519bb 1355 (not (and transient-mark-mode mark-active
fa81f010 1356 (< (mark) (point)))))
d85519bb
JL
1357 (goto-char isearch-other-end))
1358 (set query-replace-from-history-variable
1359 (cons isearch-string
1360 (symbol-value query-replace-from-history-variable)))
81e898ea
SM
1361 (perform-replace
1362 isearch-string
d85519bb
JL
1363 (query-replace-read-to
1364 isearch-string
9d14752f
JL
1365 (concat "Query replace"
1366 (if (or delimited isearch-word) " word" "")
1367 (if isearch-regexp " regexp" "")
1368 (if (and transient-mark-mode mark-active) " in region" ""))
d85519bb 1369 isearch-regexp)
9d14752f 1370 t isearch-regexp (or delimited isearch-word) nil nil
d85519bb 1371 (if (and transient-mark-mode mark-active) (region-beginning))
8d32ed64
JL
1372 (if (and transient-mark-mode mark-active) (region-end))))
1373 (and isearch-recursive-edit (exit-recursive-edit)))
74820eb5 1374
9d14752f
JL
1375(defun isearch-query-replace-regexp (&optional delimited)
1376 "Start `query-replace-regexp' with string to replace from last search string.
1377See `isearch-query-replace' for more information."
1378 (interactive
1379 (list current-prefix-arg))
1380 (isearch-query-replace delimited t))
74820eb5 1381
6e3057bb
JL
1382(defun isearch-occur (regexp &optional nlines)
1383 "Run `occur' with regexp to search from the current search string.
1384Interactively, REGEXP is the current search regexp or a quoted search
1385string. NLINES has the same meaning as in `occur'."
1386 (interactive
1387 (list
8d32ed64 1388 (cond
b87573f0
JL
1389 (isearch-word (concat "\\b" (replace-regexp-in-string
1390 "\\W+" "\\W+"
1391 (replace-regexp-in-string
1392 "^\\W+\\|\\W+$" "" isearch-string)
1393 nil t)
1394 "\\b"))
8d32ed64
JL
1395 (isearch-regexp isearch-string)
1396 (t (regexp-quote isearch-string)))
6e3057bb
JL
1397 (if current-prefix-arg (prefix-numeric-value current-prefix-arg))))
1398 (let ((case-fold-search isearch-case-fold-search)
1399 ;; set `search-upper-case' to nil to not call
1400 ;; `isearch-no-upper-case-p' in `occur-1'
1401 (search-upper-case nil))
1402 (occur regexp nlines)))
1403
11c9f489
JL
1404(declare-function hi-lock-regexp-okay "hi-lock" (regexp))
1405(declare-function hi-lock-read-face-name "hi-lock" ())
1406
8938c0bc 1407(defun isearch-highlight-regexp ()
11c9f489 1408 "Run `highlight-regexp' with regexp from the current search string.
8938c0bc
JL
1409It exits Isearch mode and calls `hi-lock-face-buffer' with its regexp
1410argument from the last search regexp or a quoted search string,
1411and reads its face argument using `hi-lock-read-face-name'."
1412 (interactive)
8d32ed64
JL
1413 (let (
1414 ;; Set `isearch-recursive-edit' to nil to prevent calling
1415 ;; `exit-recursive-edit' in `isearch-done' that terminates
1416 ;; the execution of this command when it is non-nil.
1417 ;; We call `exit-recursive-edit' explicitly at the end below.
1418 (isearch-recursive-edit nil))
1419 (isearch-done nil t)
1420 (isearch-clean-overlays))
8938c0bc 1421 (require 'hi-lock nil t)
36bdf1ff
CY
1422 (let ((string (cond (isearch-regexp isearch-string)
1423 ((if (and (eq isearch-case-fold-search t)
1424 search-upper-case)
1425 (isearch-no-upper-case-p
1426 isearch-string isearch-regexp)
1427 isearch-case-fold-search)
1428 ;; Turn isearch-string into a case-insensitive
1429 ;; regexp.
9c7a6b15
CY
1430 (mapconcat
1431 (lambda (c)
1432 (let ((s (string c)))
1433 (if (string-match "[[:alpha:]]" s)
1434 (format "[%s%s]" (upcase s) (downcase s))
1435 (regexp-quote s))))
1436 isearch-string ""))
36bdf1ff 1437 (t (regexp-quote isearch-string)))))
8d32ed64
JL
1438 (hi-lock-face-buffer string (hi-lock-read-face-name)))
1439 (and isearch-recursive-edit (exit-recursive-edit)))
11c9f489 1440
74820eb5 1441\f
8e1cae6d 1442(defun isearch-delete-char ()
d6b8a1c0 1443 "Discard last input item and move point back.
8e1cae6d
JB
1444If no previous match was done, just beep."
1445 (interactive)
1446 (if (null (cdr isearch-cmds))
1447 (ding)
1448 (isearch-pop-state))
1449 (isearch-update))
1450
74820eb5
JL
1451(defun isearch-del-char (&optional arg)
1452 "Delete character from end of search string and search again.
1453If search string is empty, just beep."
1454 (interactive "p")
1455 (if (= 0 (length isearch-string))
35904fd3 1456 (ding)
74820eb5 1457 (setq isearch-string (substring isearch-string 0 (- (or arg 1)))
35904fd3 1458 isearch-message (mapconcat 'isearch-text-char-description
02b99a17
JL
1459 isearch-string "")))
1460 ;; Use the isearch-other-end as new starting point to be able
1461 ;; to find the remaining part of the search string again.
1462 (if isearch-other-end (goto-char isearch-other-end))
1463 (isearch-search)
1464 (isearch-push-state)
1465 (isearch-update))
8e1cae6d 1466
9cf081fa
KH
1467(defun isearch-yank-string (string)
1468 "Pull STRING into search string."
1469 ;; Downcase the string if not supposed to case-fold yanked strings.
1470 (if (and isearch-case-fold-search
1471 (eq 'not-yanks search-upper-case))
1472 (setq string (downcase string)))
1473 (if isearch-regexp (setq string (regexp-quote string)))
1474 (setq isearch-string (concat isearch-string string)
1475 isearch-message
1476 (concat isearch-message
1477 (mapconcat 'isearch-text-char-description
1478 string ""))
1479 ;; Don't move cursor in reverse search.
1480 isearch-yank-flag t)
8e1cae6d
JB
1481 (isearch-search-and-update))
1482
30d47262
RS
1483(defun isearch-yank-kill ()
1484 "Pull string from kill ring into search string."
1485 (interactive)
9cf081fa
KH
1486 (isearch-yank-string (current-kill 0)))
1487
1488(defun isearch-yank-x-selection ()
117132a6 1489 "Pull current X selection into search string."
9cf081fa
KH
1490 (interactive)
1491 (isearch-yank-string (x-get-selection)))
8e1cae6d 1492
e4af1426 1493
191f025a 1494(defun isearch-mouse-2 (click)
e4af1426 1495 "Handle mouse-2 in Isearch mode.
117132a6 1496For a click in the echo area, invoke `isearch-yank-x-selection'.
f3b5dd74
DK
1497Otherwise invoke whatever the calling mouse-2 command sequence
1498is bound to outside of Isearch."
191f025a 1499 (interactive "e")
e4af1426
GM
1500 (let* ((w (posn-window (event-start click)))
1501 (overriding-terminal-local-map nil)
f3b5dd74 1502 (binding (key-binding (this-command-keys-vector) t)))
117132a6
DL
1503 (if (and (window-minibuffer-p w)
1504 (not (minibuffer-window-active-p w))) ; in echo area
1505 (isearch-yank-x-selection)
cd59ea72 1506 (when (functionp binding)
191f025a 1507 (call-interactively binding)))))
e4af1426 1508
29e53a0a
KF
1509(defun isearch-yank-internal (jumpform)
1510 "Pull the text from point to the point reached by JUMPFORM.
4b65254d
JB
1511JUMPFORM is a lambda expression that takes no arguments and returns
1512a buffer position, possibly having moved point to that position.
1513For example, it might move point forward by a word and return point,
1514or it might return the position of the end of the line."
9cf081fa
KH
1515 (isearch-yank-string
1516 (save-excursion
1517 (and (not isearch-forward) isearch-other-end
1518 (goto-char isearch-other-end))
29e53a0a
KF
1519 (buffer-substring-no-properties (point) (funcall jumpform)))))
1520
74820eb5
JL
1521(defun isearch-yank-char-in-minibuffer (&optional arg)
1522 "Pull next character from buffer into end of search string in minibuffer."
1523 (interactive "p")
1524 (if (eobp)
1525 (insert
00c42405 1526 (with-current-buffer (cadr (buffer-list))
74820eb5
JL
1527 (buffer-substring-no-properties
1528 (point) (progn (forward-char arg) (point)))))
1529 (forward-char arg)))
1530
1531(defun isearch-yank-char (&optional arg)
35904fd3 1532 "Pull next character from buffer into search string."
74820eb5
JL
1533 (interactive "p")
1534 (isearch-yank-internal (lambda () (forward-char arg) (point))))
29e53a0a 1535
868bf43a
RS
1536(defun isearch-yank-word-or-char ()
1537 "Pull next character or word from buffer into search string."
1538 (interactive)
21d90805 1539 (isearch-yank-internal
b48ca14f 1540 (lambda ()
21d90805
KF
1541 (if (or (= (char-syntax (or (char-after) 0)) ?w)
1542 (= (char-syntax (or (char-after (1+ (point))) 0)) ?w))
1543 (forward-word 1)
1544 (forward-char 1)) (point))))
868bf43a 1545
29e53a0a
KF
1546(defun isearch-yank-word ()
1547 "Pull next word from buffer into search string."
1548 (interactive)
1549 (isearch-yank-internal (lambda () (forward-word 1) (point))))
8e1cae6d
JB
1550
1551(defun isearch-yank-line ()
1552 "Pull rest of line from buffer into search string."
1553 (interactive)
a1883913 1554 (isearch-yank-internal
933f8467
RF
1555 (lambda () (let ((inhibit-field-text-motion t))
1556 (line-end-position (if (eolp) 2 1))))))
8e1cae6d
JB
1557
1558(defun isearch-search-and-update ()
1559 ;; Do the search and update the display.
191f025a 1560 (when (or isearch-success
35904fd3
JL
1561 ;; Unsuccessful regexp search may become successful by
1562 ;; addition of characters which make isearch-string valid
cd59ea72
SM
1563 isearch-regexp
1564 ;; If the string was found but was completely invisible,
1565 ;; it might now be partly visible, so try again.
1566 (prog1 isearch-hidden (setq isearch-hidden nil)))
8e1cae6d
JB
1567 ;; In reverse search, adding stuff at
1568 ;; the end may cause zero or many more chars to be
1569 ;; matched, in the string following point.
1570 ;; Allow all those possibilities without moving point as
1571 ;; long as the match does not extend past search origin.
1572 (if (and (not isearch-forward) (not isearch-adjusted)
1573 (condition-case ()
99ae9e9f 1574 (let ((case-fold-search isearch-case-fold-search))
ec0a2f45
KH
1575 (if (and (eq case-fold-search t) search-upper-case)
1576 (setq case-fold-search
1577 (isearch-no-upper-case-p isearch-string isearch-regexp)))
99ae9e9f
KH
1578 (looking-at (if isearch-regexp isearch-string
1579 (regexp-quote isearch-string))))
8e1cae6d 1580 (error nil))
bd6a8414 1581 (or isearch-yank-flag
191f025a 1582 (<= (match-end 0)
bd6a8414 1583 (min isearch-opoint isearch-barrier))))
d64b1d96 1584 (progn
191f025a 1585 (setq isearch-success t
ba653a53 1586 isearch-error nil
d64b1d96
RS
1587 isearch-other-end (match-end 0))
1588 (if (and (eq isearch-case-fold-search t) search-upper-case)
1589 (setq isearch-case-fold-search
1590 (isearch-no-upper-case-p isearch-string isearch-regexp))))
8e1cae6d
JB
1591 ;; Not regexp, not reverse, or no match at point.
1592 (if (and isearch-other-end (not isearch-adjusted))
1593 (goto-char (if isearch-forward isearch-other-end
191f025a
SM
1594 (min isearch-opoint
1595 isearch-barrier
8e1cae6d
JB
1596 (1+ isearch-other-end)))))
1597 (isearch-search)
1598 ))
1599 (isearch-push-state)
1600 (if isearch-op-fun (funcall isearch-op-fun))
1601 (isearch-update))
1602
1603
08e3de69 1604;; *, ?, }, and | chars can make a regexp more liberal.
08200510 1605;; They can make a regexp match sooner or make it succeed instead of failing.
8e1cae6d
JB
1606;; So go back to place last successful search started
1607;; or to the last ^S/^R (barrier), whichever is nearer.
08200510 1608;; + needs no special handling because the string must match at least once.
8e1cae6d 1609
08e3de69
EZ
1610(defun isearch-backslash (str)
1611 "Return t if STR ends in an odd number of backslashes."
1612 (= (mod (- (length str) (string-match "\\\\*\\'" str)) 2) 1))
1613
1614(defun isearch-fallback (want-backslash &optional allow-invalid to-barrier)
1615 "Return point to previous successful match to allow regexp liberalization.
1616\\<isearch-mode-map>
4b65254d 1617Respects \\[isearch-repeat-forward] and \\[isearch-repeat-backward] by \
08e3de69
EZ
1618stopping at `isearch-barrier' as needed.
1619
6f2df0f4
JL
1620Do nothing if a backslash is escaping the liberalizing character.
1621If WANT-BACKSLASH is non-nil, invert this behavior (for \\} and \\|).
08e3de69 1622
6f2df0f4
JL
1623Do nothing if regexp has recently been invalid unless optional
1624ALLOW-INVALID non-nil.
08e3de69 1625
6f2df0f4
JL
1626If optional TO-BARRIER non-nil, ignore previous matches and go exactly
1627to the barrier."
08e3de69
EZ
1628 ;; (eq (not a) (not b)) makes all non-nil values equivalent
1629 (when (and isearch-regexp (eq (not (isearch-backslash isearch-string))
1630 (not want-backslash))
1631 ;; We have to check 2 stack frames because the last might be
1632 ;; invalid just because of a backslash.
ba653a53
JL
1633 (or (not isearch-error)
1634 (not (isearch-error-state (cadr isearch-cmds)))
08e3de69
EZ
1635 allow-invalid))
1636 (if to-barrier
1637 (progn (goto-char isearch-barrier)
1638 (setq isearch-adjusted t))
1639 (let* ((stack isearch-cmds)
1640 (previous (cdr stack)) ; lookbelow in the stack
1641 (frame (car stack)))
1642 ;; Walk down the stack looking for a valid regexp (as of course only
1643 ;; they can be the previous successful match); this conveniently
1644 ;; removes all bracket-sets and groups that might be in the way, as
1645 ;; well as partial \{\} constructs that the code below leaves behind.
1646 ;; Also skip over postfix operators -- though horrid,
9b9a4122 1647 ;; 'ab?\{5,6\}+\{1,2\}*' is perfectly valid.
08e3de69 1648 (while (and previous
ba653a53 1649 (or (isearch-error-state frame)
1a699acf 1650 (let* ((string (isearch-string-state frame))
08e3de69
EZ
1651 (lchar (aref string (1- (length string)))))
1652 ;; The operators aren't always operators; check
1653 ;; backslashes. This doesn't handle the case of
1654 ;; operators at the beginning of the regexp not
1655 ;; being special, but then we should fall back to
1656 ;; the barrier anyway because it's all optional.
1657 (if (isearch-backslash
1a699acf 1658 (isearch-string-state (car previous)))
08e3de69
EZ
1659 (eq lchar ?\})
1660 (memq lchar '(?* ?? ?+))))))
1661 (setq stack previous previous (cdr previous) frame (car stack)))
1662 (when stack
1663 ;; `stack' now refers the most recent valid regexp that is not at
1664 ;; all optional in its last term. Now dig one level deeper and find
1665 ;; what matched before that.
5a1f9fcf
JL
1666 (let ((last-other-end
1667 (or (and (car previous)
1668 (isearch-other-end-state (car previous)))
1669 isearch-barrier)))
08e3de69
EZ
1670 (goto-char (if isearch-forward
1671 (max last-other-end isearch-barrier)
1672 (min last-other-end isearch-barrier)))
6f2df0f4 1673 (setq isearch-adjusted t)))))))
8e1cae6d 1674
6b61353c
KH
1675(defun isearch-unread-key-sequence (keylist)
1676 "Unread the given key-sequence KEYLIST.
1677Scroll-bar or mode-line events are processed appropriately."
1678 (cancel-kbd-macro-events)
1679 (apply 'isearch-unread keylist)
1680 ;; If the event was a scroll-bar or mode-line click, the event will have
1681 ;; been prefixed by a symbol such as vertical-scroll-bar. We must remove
1682 ;; it here, because this symbol will be attached to the event again next
1683 ;; time it gets read by read-key-sequence.
1684 ;;
1685 ;; (Old comment from isearch-other-meta-char: "Note that we don't have to
1686 ;; modify the event anymore in 21 because read_key_sequence no longer
1687 ;; modifies events to produce fake prefix keys.")
1688 (if (and (> (length keylist) 1)
1689 (symbolp (car keylist))
1690 (listp (cadr keylist))
1691 (not (numberp (posn-point
1692 (event-start (cadr keylist) )))))
1693 (pop unread-command-events)))
1694
1695;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1696;; scrolling within Isearch mode. Alan Mackenzie (acm@muc.de), 2003/2/24
1697;;
1698;; The idea here is that certain vertical scrolling commands (like C-l
1699;; `recenter') should be usable WITHIN Isearch mode. For a command to be
1700;; suitable, it must NOT alter the buffer, swap to another buffer or frame,
1701;; tamper with isearch's state, or move point. It is unacceptable for the
1702;; search string to be scrolled out of the current window. If a command
1703;; attempts this, we scroll the text back again.
1704;;
1705;; We implement this feature with a property called `isearch-scroll'.
1706;; If a command's symbol has the value t for this property it is a
1707;; scrolling command. The feature needs to be enabled by setting the
1708;; customizable variable `isearch-allow-scroll' to a non-nil value.
1709;;
1710;; The universal argument commands (e.g. C-u) in simple.el are marked
1711;; as scrolling commands, and isearch.el has been amended to allow
1712;; prefix arguments to be passed through to scrolling commands. Thus
1713;; M-0 C-l will scroll point to the top of the window.
1714;;
1715;; Horizontal scrolling commands are currently not catered for.
1716;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1717
1718;; Set the isearch-scroll property on some standard functions:
1719;; Scroll-bar functions:
1720(if (fboundp 'scroll-bar-toolkit-scroll)
1721 (put 'scroll-bar-toolkit-scroll 'isearch-scroll t))
6b61353c
KH
1722(if (fboundp 'w32-handle-scroll-bar-event)
1723 (put 'w32-handle-scroll-bar-event 'isearch-scroll t))
1724
1725;; Commands which scroll the window:
1726(put 'recenter 'isearch-scroll t)
21d9ed8b 1727(put 'recenter-top-bottom 'isearch-scroll t)
6b61353c
KH
1728(put 'reposition-window 'isearch-scroll t)
1729(put 'scroll-up 'isearch-scroll t)
1730(put 'scroll-down 'isearch-scroll t)
1731
1732;; Commands which act on the other window
1733(put 'list-buffers 'isearch-scroll t)
1734(put 'scroll-other-window 'isearch-scroll t)
1735(put 'scroll-other-window-down 'isearch-scroll t)
1736(put 'beginning-of-buffer-other-window 'isearch-scroll t)
1737(put 'end-of-buffer-other-window 'isearch-scroll t)
1738
1739;; Commands which change the window layout
1740(put 'delete-other-windows 'isearch-scroll t)
1741(put 'balance-windows 'isearch-scroll t)
1742(put 'split-window-vertically 'isearch-scroll t)
7f55d3b7 1743(put 'split-window-horizontally 'isearch-scroll t)
6b61353c
KH
1744(put 'enlarge-window 'isearch-scroll t)
1745
1746;; Universal argument commands
1747(put 'universal-argument 'isearch-scroll t)
1748(put 'negative-argument 'isearch-scroll t)
1749(put 'digit-argument 'isearch-scroll t)
1750
1751(defcustom isearch-allow-scroll nil
1752 "If non-nil, scrolling commands are allowed during incremental search."
1753 :type 'boolean
1754 :group 'isearch)
1755
1756(defun isearch-string-out-of-window (isearch-point)
1757 "Test whether the search string is currently outside of the window.
1758Return nil if it's completely visible, or if point is visible,
1759together with as much of the search string as will fit; the symbol
1760`above' if we need to scroll the text downwards; the symbol `below',
1761if upwards."
1762 (let ((w-start (window-start))
1763 (w-end (window-end nil t))
1764 (w-L1 (save-excursion (move-to-window-line 1) (point)))
1765 (w-L-1 (save-excursion (move-to-window-line -1) (point)))
1766 start end) ; start and end of search string in buffer
1767 (if isearch-forward
1768 (setq end isearch-point start (or isearch-other-end isearch-point))
1769 (setq start isearch-point end (or isearch-other-end isearch-point)))
1770 (cond ((or (and (>= start w-start) (<= end w-end))
1771 (if isearch-forward
1772 (and (>= isearch-point w-L-1) (< isearch-point w-end)) ; point on Line -1
1773 (and (>= isearch-point w-start) (< isearch-point w-L1)))) ; point on Line 0
1774 nil)
1775 ((and (< start w-start)
1776 (< isearch-point w-L-1))
1777 'above)
1778 (t 'below))))
1779
1780(defun isearch-back-into-window (above isearch-point)
1781 "Scroll the window to bring the search string back into view.
1782Restore point to ISEARCH-POINT in the process. ABOVE is t when the
1783search string is above the top of the window, nil when it is beneath
1784the bottom."
1785 (let (start end)
1786 (if isearch-forward
1787 (setq end isearch-point start (or isearch-other-end isearch-point))
1788 (setq start isearch-point end (or isearch-other-end isearch-point)))
1789 (if above
1790 (progn
1791 (goto-char start)
1792 (recenter 0)
1793 (when (>= isearch-point (window-end nil t))
1794 (goto-char isearch-point)
1795 (recenter -1)))
1796 (goto-char end)
1797 (recenter -1)
1798 (when (< isearch-point (window-start))
1799 (goto-char isearch-point)
1800 (recenter 0))))
1801 (goto-char isearch-point))
1802
1803(defun isearch-reread-key-sequence-naturally (keylist)
1804 "Reread key sequence KEYLIST with Isearch mode's keymap deactivated.
1805Return the key sequence as a string/vector."
1806 (isearch-unread-key-sequence keylist)
1807 (let (overriding-terminal-local-map)
1808 (read-key-sequence nil))) ; This will go through function-key-map, if nec.
1809
1810(defun isearch-lookup-scroll-key (key-seq)
1811 "If KEY-SEQ is bound to a scrolling command, return it as a symbol.
1812Otherwise return nil."
1813 (let* ((overriding-terminal-local-map nil)
1814 (binding (key-binding key-seq)))
1815 (and binding (symbolp binding) (commandp binding)
1816 (eq (get binding 'isearch-scroll) t)
1817 binding)))
8e1cae6d 1818
b457cc3b 1819(defalias 'isearch-other-control-char 'isearch-other-meta-char)
8e1cae6d 1820
6b61353c
KH
1821(defun isearch-other-meta-char (&optional arg)
1822 "Process a miscellaneous key sequence in Isearch mode.
1823
1824Try to convert the current key-sequence to something usable in Isearch
1825mode, either by converting it with `function-key-map', downcasing a
1826key with C-<upper case>, or finding a \"scrolling command\" bound to
1827it. \(In the last case, we may have to read more events.) If so,
1828either unread the converted sequence or execute the command.
1829
1830Otherwise, if `search-exit-option' is non-nil (the default) unread the
1831key-sequence and exit the search normally. If it is the symbol
1832`edit', the search string is edited in the minibuffer and the meta
1833character is unread so that it applies to editing the string.
1834
1835ARG is the prefix argument. It will be transmitted through to the
1836scrolling command or to the command whose key-sequence exits
1837Isearch mode."
1838 (interactive "P")
1839 (let* ((key (if current-prefix-arg ; not nec the same as ARG
1840 (substring (this-command-keys) universal-argument-num-events)
1841 (this-command-keys)))
c6431f12 1842 (main-event (aref key 0))
6b61353c
KH
1843 (keylist (listify-key-sequence key))
1844 scroll-command isearch-point)
24b5caec 1845 (cond ((and (= (length key) 1)
c40bb1ba 1846 (let ((lookup (lookup-key local-function-key-map key)))
3f866b53
KH
1847 (not (or (null lookup) (integerp lookup)
1848 (keymapp lookup)))))
24b5caec
RS
1849 ;; Handle a function key that translates into something else.
1850 ;; If the key has a global definition too,
1851 ;; exit and unread the key itself, so its global definition runs.
1852 ;; Otherwise, unread the translation,
1853 ;; so that the translated key takes effect within isearch.
d94eb6eb 1854 (cancel-kbd-macro-events)
24b5caec 1855 (if (lookup-key global-map key)
02b2f510 1856 (progn
24b5caec
RS
1857 (isearch-done)
1858 (apply 'isearch-unread keylist))
a5cc922e 1859 (setq keylist
c40bb1ba 1860 (listify-key-sequence (lookup-key local-function-key-map key)))
a5cc922e
KH
1861 (while keylist
1862 (setq key (car keylist))
1863 ;; If KEY is a printing char, we handle it here
1864 ;; directly to avoid the input method and keyboard
1865 ;; coding system translating it.
1866 (if (and (integerp key)
6480c508 1867 (>= key ?\s) (/= key 127) (< key 256))
a5cc922e
KH
1868 (progn
1869 (isearch-process-search-char key)
1870 (setq keylist (cdr keylist)))
1871 ;; As the remaining keys in KEYLIST can't be handled
1872 ;; here, we must reread them.
1873 (apply 'isearch-unread keylist)
1874 (setq keylist nil)))))
24b5caec 1875 (
c6431f12
KH
1876 ;; Handle an undefined shifted control character
1877 ;; by downshifting it if that makes it defined.
1878 ;; (As read-key-sequence would normally do,
1879 ;; if we didn't have a default definition.)
1880 (let ((mods (event-modifiers main-event)))
1881 (and (integerp main-event)
1882 (memq 'shift mods)
1883 (memq 'control mods)
f438bf5c
EZ
1884 (not (memq (lookup-key isearch-mode-map
1885 (let ((copy (copy-sequence key)))
1886 (aset copy 0
1887 (- main-event
1888 (- ?\C-\S-a ?\C-a)))
1889 copy)
1890 nil)
1891 '(nil
1892 isearch-other-control-char)))))
c6431f12 1893 (setcar keylist (- main-event (- ?\C-\S-a ?\C-a)))
d94eb6eb 1894 (cancel-kbd-macro-events)
c6431f12
KH
1895 (apply 'isearch-unread keylist))
1896 ((eq search-exit-option 'edit)
1897 (apply 'isearch-unread keylist)
1898 (isearch-edit-string))
6b61353c
KH
1899 ;; Handle a scrolling function.
1900 ((and isearch-allow-scroll
1901 (progn (setq key (isearch-reread-key-sequence-naturally keylist))
1902 (setq keylist (listify-key-sequence key))
1903 (setq main-event (aref key 0))
1904 (setq scroll-command (isearch-lookup-scroll-key key))))
1905 ;; From this point onwards, KEY, KEYLIST and MAIN-EVENT hold a
1906 ;; complete key sequence, possibly as modified by function-key-map,
1907 ;; not merely the one or two event fragment which invoked
1908 ;; isearch-other-meta-char in the first place.
1909 (setq isearch-point (point))
1910 (setq prefix-arg arg)
1911 (command-execute scroll-command)
1912 (let ((ab-bel (isearch-string-out-of-window isearch-point)))
1913 (if ab-bel
35904fd3 1914 (isearch-back-into-window (eq ab-bel 'above) isearch-point)
d85519bb 1915 (goto-char isearch-point)))
6b61353c 1916 (isearch-update))
72a69d7f
JL
1917 ;; A mouse click on the isearch message starts editing the search string
1918 ((and (eq (car-safe main-event) 'down-mouse-1)
1919 (window-minibuffer-p (posn-window (event-start main-event))))
1920 ;; Swallow the up-event.
1921 (read-event)
1922 (isearch-edit-string))
c6431f12
KH
1923 (search-exit-option
1924 (let (window)
6b61353c
KH
1925 (isearch-unread-key-sequence keylist)
1926 (setq main-event (car unread-command-events))
3fb01f36 1927
346f18dc
GM
1928 ;; If we got a mouse click event, that event contains the
1929 ;; window clicked on. maybe it was read with the buffer
c6431f12
KH
1930 ;; it was clicked on. If so, that buffer, not the current one,
1931 ;; is in isearch mode. So end the search in that buffer.
346f18dc
GM
1932
1933 ;; ??? I have no idea what this if checks for, but it's
1934 ;; obviously wrong for the case that a down-mouse event
1935 ;; on another window invokes this function. The event
1936 ;; will contain the window clicked on and that window's
b48ca14f 1937 ;; buffer is certainly not always in Isearch mode.
346f18dc
GM
1938 ;;
1939 ;; Leave the code in, but check for current buffer not
1940 ;; being in Isearch mode for now, until someone tells
1941 ;; what it's really supposed to do.
1942 ;;
1943 ;; --gerd 2001-08-10.
1944
1945 (if (and (not isearch-mode)
1946 (listp main-event)
c6431f12 1947 (setq window (posn-window (event-start main-event)))
4fd017e7
RS
1948 (windowp window)
1949 (or (> (minibuffer-depth) 0)
1950 (not (window-minibuffer-p window))))
00c42405 1951 (with-current-buffer (window-buffer window)
0352b205
RS
1952 (isearch-done)
1953 (isearch-clean-overlays))
1954 (isearch-done)
6b61353c
KH
1955 (isearch-clean-overlays)
1956 (setq prefix-arg arg))))
1957 (t;; otherwise nil
c6431f12 1958 (isearch-process-search-string key key)))))
8e1cae6d 1959
8e1cae6d
JB
1960(defun isearch-quote-char ()
1961 "Quote special characters for incremental search."
1962 (interactive)
8bc15fa8 1963 (let ((char (read-quoted-char (isearch-message t))))
3c75023f 1964 ;; Assume character codes 0200 - 0377 stand for characters in some
c20d35d5
KH
1965 ;; single-byte character set, and convert them to Emacs
1966 ;; characters.
6480c508 1967 (if (and isearch-regexp (= char ?\s))
be02a7ed 1968 (if (subregexp-context-p isearch-string (length isearch-string))
30bb1443
SM
1969 (isearch-process-search-string "[ ]" " ")
1970 (isearch-process-search-char char))
ab67e8b6
RS
1971 (and enable-multibyte-characters
1972 (>= char ?\200)
1973 (<= char ?\377)
1974 (setq char (unibyte-char-to-multibyte char)))
1975 (isearch-process-search-char char))))
8e1cae6d 1976
8e1cae6d 1977(defun isearch-return-char ()
6f2df0f4 1978 "Convert return into newline for incremental search."
8e1cae6d
JB
1979 (interactive)
1980 (isearch-process-search-char ?\n))
13701709 1981(make-obsolete 'isearch-return-char 'isearch-printing-char "19.7")
8e1cae6d 1982
8e1cae6d 1983(defun isearch-printing-char ()
b68c164d 1984 "Add this ordinary printing character to the search string and search."
8e1cae6d 1985 (interactive)
8989a920 1986 (let ((char last-command-event))
45b94eb2 1987 (if (= char ?\S-\ )
6480c508 1988 (setq char ?\s))
758710cb
KH
1989 (if current-input-method
1990 (isearch-process-search-multibyte-characters char)
1991 (isearch-process-search-char char))))
8e1cae6d 1992
8e1cae6d 1993(defun isearch-process-search-char (char)
6f2df0f4
JL
1994 ;; * and ? are special in regexps when not preceded by \.
1995 ;; } and | are special in regexps when preceded by \.
1996 ;; Nothing special for + because it matches at least once.
1997 (cond
1998 ((memq char '(?* ??)) (isearch-fallback nil))
1999 ((eq char ?\}) (isearch-fallback t t))
2000 ((eq char ?|) (isearch-fallback t nil t)))
2001
8e1cae6d 2002 ;; Append the char to the search string, update the message and re-search.
191f025a
SM
2003 (isearch-process-search-string
2004 (char-to-string char)
8f3c1d76 2005 (if (>= char ?\200)
01a6ef79
RS
2006 (char-to-string char)
2007 (isearch-text-char-description char))))
8e1cae6d
JB
2008
2009(defun isearch-process-search-string (string message)
2010 (setq isearch-string (concat isearch-string string)
2011 isearch-message (concat isearch-message message))
2012 (isearch-search-and-update))
2013
2014\f
8e1cae6d
JB
2015;; Search Ring
2016
08200510
RS
2017(defun isearch-ring-adjust1 (advance)
2018 ;; Helper for isearch-ring-adjust
2019 (let* ((ring (if isearch-regexp regexp-search-ring search-ring))
8e1cae6d
JB
2020 (length (length ring))
2021 (yank-pointer-name (if isearch-regexp
08200510 2022 'regexp-search-ring-yank-pointer
8e1cae6d
JB
2023 'search-ring-yank-pointer))
2024 (yank-pointer (eval yank-pointer-name)))
2025 (if (zerop length)
2026 ()
2027 (set yank-pointer-name
2028 (setq yank-pointer
ffbc30b2
PE
2029 (mod (+ (or yank-pointer 0)
2030 (if advance -1 1))
2031 length)))
a5dcf63f 2032 (setq isearch-string (nth yank-pointer ring)
08200510
RS
2033 isearch-message (mapconcat 'isearch-text-char-description
2034 isearch-string "")))))
2035
2036(defun isearch-ring-adjust (advance)
2037 ;; Helper for isearch-ring-advance and isearch-ring-retreat
08200510 2038 (isearch-ring-adjust1 advance)
08200510
RS
2039 (if search-ring-update
2040 (progn
2041 (isearch-search)
a71a98cf 2042 (isearch-push-state)
08200510 2043 (isearch-update))
a71a98cf
JL
2044 ;; Otherwise, edit the search string instead. Note that there is
2045 ;; no need to push the search state after isearch-edit-string here
2046 ;; since isearch-edit-string already pushes its state
2047 (isearch-edit-string)))
8e1cae6d
JB
2048
2049(defun isearch-ring-advance ()
2050 "Advance to the next search string in the ring."
08200510 2051 ;; This could be more general to handle a prefix arg, but who would use it.
8e1cae6d
JB
2052 (interactive)
2053 (isearch-ring-adjust 'advance))
2054
2055(defun isearch-ring-retreat ()
2056 "Retreat to the previous search string in the ring."
2057 (interactive)
2058 (isearch-ring-adjust nil))
2059
08200510
RS
2060(defun isearch-complete1 ()
2061 ;; Helper for isearch-complete and isearch-complete-edit
2062 ;; Return t if completion OK, nil if no completion exists.
2063 (let* ((ring (if isearch-regexp regexp-search-ring search-ring))
08200510 2064 (completion-ignore-case case-fold-search)
c789e608 2065 (completion (try-completion isearch-string ring)))
08200510
RS
2066 (cond
2067 ((eq completion t)
2068 ;; isearch-string stays the same
2069 t)
2070 ((or completion ; not nil, must be a string
b7852303 2071 (= 0 (length isearch-string))) ; shouldn't have to say this
08200510 2072 (if (equal completion isearch-string) ;; no extension?
36bcac3f
RS
2073 (progn
2074 (if completion-auto-help
2075 (with-output-to-temp-buffer "*Isearch completions*"
b48ca14f 2076 (display-completion-list
c789e608 2077 (all-completions isearch-string ring))))
36bcac3f
RS
2078 t)
2079 (and completion
2080 (setq isearch-string completion))))
08200510
RS
2081 (t
2082 (message "No completion") ; waits a second if in minibuffer
2083 nil))))
2084
2085(defun isearch-complete ()
2086 "Complete the search string from the strings on the search ring.
2087The completed string is then editable in the minibuffer.
2088If there is no completion possible, say so and continue searching."
2089 (interactive)
2090 (if (isearch-complete1)
3ae4c509
RS
2091 (progn (setq isearch-message
2092 (mapconcat 'isearch-text-char-description
2093 isearch-string ""))
2094 (isearch-edit-string))
08200510
RS
2095 ;; else
2096 (sit-for 1)
2097 (isearch-update)))
8e1cae6d 2098
08200510
RS
2099(defun isearch-complete-edit ()
2100 "Same as `isearch-complete' except in the minibuffer."
2101 (interactive)
c789e608 2102 (setq isearch-string (field-string))
08200510 2103 (if (isearch-complete1)
8e1cae6d 2104 (progn
b7b66466 2105 (delete-field)
08200510 2106 (insert isearch-string))))
8e1cae6d
JB
2107
2108\f
8e1cae6d
JB
2109;; Message string
2110
2111(defun isearch-message (&optional c-q-hack ellipsis)
2112 ;; Generate and print the message string.
2113 (let ((cursor-in-echo-area ellipsis)
d8891294
JL
2114 (m isearch-message)
2115 (cmds isearch-cmds)
2116 succ-msg)
2117 (when (or (not isearch-success) isearch-error)
2118 ;; Highlight failed part
2119 (while (or (not (isearch-success-state (car cmds)))
2120 (isearch-error-state (car cmds)))
2121 (pop cmds))
2122 (setq succ-msg (and cmds (isearch-message-state (car cmds)))
2123 m (copy-sequence m))
a71a98cf
JL
2124 (add-text-properties
2125 (if (and (stringp succ-msg)
2126 (< (length succ-msg) (length m))
2127 (equal succ-msg (substring m 0 (length succ-msg))))
2128 (length succ-msg)
2129 0)
2130 (length m) '(face isearch-fail) m)
d8891294
JL
2131 ;; Highlight failed trailing whitespace
2132 (when (string-match " +$" m)
2133 (add-text-properties (match-beginning 0) (match-end 0)
2134 '(face trailing-whitespace) m)))
2135 (setq m (concat
2136 (isearch-message-prefix c-q-hack ellipsis isearch-nonincremental)
2137 m
2138 (isearch-message-suffix c-q-hack ellipsis)))
2139 (if c-q-hack m (let ((message-log-max nil)) (message "%s" m)))))
8e1cae6d 2140
08200510 2141(defun isearch-message-prefix (&optional c-q-hack ellipsis nonincremental)
8e1cae6d
JB
2142 ;; If about to search, and previous search regexp was invalid,
2143 ;; check that it still is. If it is valid now,
2144 ;; let the message we display while searching say that it is valid.
ba653a53 2145 (and isearch-error ellipsis
8e1cae6d
JB
2146 (condition-case ()
2147 (progn (re-search-forward isearch-string (point) t)
ba653a53 2148 (setq isearch-error nil))
8e1cae6d
JB
2149 (error nil)))
2150 ;; If currently failing, display no ellipsis.
2151 (or isearch-success (setq ellipsis nil))
2152 (let ((m (concat (if isearch-success "" "failing ")
d85519bb 2153 (if isearch-adjusted "pending " "")
7badea30 2154 (if (and isearch-wrapped
6a18e4e7 2155 (not isearch-wrap-function)
7badea30
RS
2156 (if isearch-forward
2157 (> (point) isearch-opoint)
2158 (< (point) isearch-opoint)))
2159 "over")
8e1cae6d 2160 (if isearch-wrapped "wrapped ")
08200510 2161 (if isearch-word "word " "")
8e1cae6d 2162 (if isearch-regexp "regexp " "")
3c0aa5e6 2163 (if multi-isearch-next-buffer-current-function "multi " "")
ee9b85a8 2164 (or isearch-message-prefix-add "")
08200510 2165 (if nonincremental "search" "I-search")
f46d5091 2166 (if isearch-forward "" " backward")
5b56d4e4
KH
2167 (if current-input-method
2168 (concat " [" current-input-method-title "]: ")
f46d5091 2169 ": ")
8e1cae6d 2170 )))
aec11aff
KS
2171 (propertize (concat (upcase (substring m 0 1)) (substring m 1))
2172 'face 'minibuffer-prompt)))
8e1cae6d
JB
2173
2174(defun isearch-message-suffix (&optional c-q-hack ellipsis)
2175 (concat (if c-q-hack "^Q" "")
ba653a53
JL
2176 (if isearch-error
2177 (concat " [" isearch-error "]")
ee9b85a8
JL
2178 "")
2179 (or isearch-message-suffix-add "")))
8e1cae6d
JB
2180
2181\f
191f025a
SM
2182;; Searching
2183
512bfd85
RS
2184(defvar isearch-search-fun-function nil
2185 "Override `isearch-search-fun'.
4b65254d 2186This function should return the search function for Isearch to use.
512bfd85
RS
2187It will call this function with three arguments
2188as if it were `search-forward'.")
191f025a
SM
2189
2190(defun isearch-search-fun ()
2191 "Return the function to use for the search.
2192Can be changed via `isearch-search-fun-function' for special needs."
2193 (if isearch-search-fun-function
2194 (funcall isearch-search-fun-function)
2195 (cond
2196 (isearch-word
b87573f0
JL
2197 ;; Use lax versions to not fail at the end of the word while
2198 ;; the user adds and removes characters in the search string
2199 ;; (or when using nonincremental word isearch)
2200 (if (or isearch-nonincremental
2201 (eq (length isearch-string)
2202 (length (isearch-string-state (car isearch-cmds)))))
2203 (if isearch-forward 'word-search-forward 'word-search-backward)
2204 (if isearch-forward 'word-search-forward-lax 'word-search-backward-lax)))
191f025a
SM
2205 (isearch-regexp
2206 (if isearch-forward 're-search-forward 're-search-backward))
2207 (t
2208 (if isearch-forward 'search-forward 'search-backward)))))
8e1cae6d 2209
6cf157df 2210(defun isearch-search-string (string bound noerror)
4b65254d
JB
2211 "Search for the first occurrence of STRING or its translation.
2212If found, move point to the end of the occurrence,
2213update the match data, and return point."
3be5da9e
SM
2214 (let* ((func (isearch-search-fun))
2215 (pos1 (save-excursion (funcall func string bound noerror)))
2216 pos2)
0d58bedd
EZ
2217 (when (and
2218 ;; Avoid "obsolete" warnings for translation-table-for-input.
2219 (with-no-warnings
2220 (char-table-p translation-table-for-input))
2221 (multibyte-string-p string)
2222 ;; Minor optimization.
2223 (string-match-p "[^[:ascii:]]" string))
3be5da9e
SM
2224 (let ((translated
2225 (apply 'string
2226 (mapcar (lambda (c)
0d58bedd
EZ
2227 (or
2228 ;; Avoid "obsolete" warnings for
2229 ;; translation-table-for-input.
2230 (with-no-warnings
2231 (aref translation-table-for-input c))
2232 c))
3be5da9e
SM
2233 string)))
2234 match-data)
2235 (when translated
2236 (save-match-data
2237 (save-excursion
2238 (if (setq pos2 (funcall func translated bound noerror))
2239 (setq match-data (match-data t)))))
2240 (when (and pos2
2241 (or (not pos1)
2242 (if isearch-forward (< pos2 pos1) (> pos2 pos1))))
2243 (setq pos1 pos2)
2244 (set-match-data match-data)))))
d240f431
JL
2245 (when pos1
2246 ;; When using multiple buffers isearch, switch to the new buffer here,
2247 ;; because `save-excursion' above doesn't allow doing it inside funcall.
3c0aa5e6
JL
2248 (if (and multi-isearch-next-buffer-current-function
2249 (buffer-live-p multi-isearch-current-buffer))
2250 (switch-to-buffer multi-isearch-current-buffer))
3be5da9e
SM
2251 (goto-char pos1)
2252 pos1)))
6cf157df 2253
8e1cae6d
JB
2254(defun isearch-search ()
2255 ;; Do the search with the current search string.
ac475d3a
JL
2256 (if isearch-message-function
2257 (funcall isearch-message-function nil t)
2258 (isearch-message nil t))
4453091d 2259 (if (and (eq isearch-case-fold-search t) search-upper-case)
b78559b0
RS
2260 (setq isearch-case-fold-search
2261 (isearch-no-upper-case-p isearch-string isearch-regexp)))
8e1cae6d 2262 (condition-case lossage
5e189f39 2263 (let ((inhibit-point-motion-hooks
f2fd3261 2264 (and (eq isearch-filter-predicate 'isearch-filter-visible)
5e189f39 2265 search-invisible))
79c7a4fa 2266 (inhibit-quit nil)
86bfaffe 2267 (case-fold-search isearch-case-fold-search)
ab67e8b6 2268 (search-spaces-regexp search-whitespace-regexp)
86bfaffe 2269 (retry t))
ba653a53 2270 (setq isearch-error nil)
86bfaffe
RS
2271 (while retry
2272 (setq isearch-success
6cf157df 2273 (isearch-search-string isearch-string nil t))
2f669fac
JL
2274 ;; Clear RETRY unless the search predicate says
2275 ;; to skip this search hit.
5e189f39 2276 (if (or (not isearch-success)
86bfaffe
RS
2277 (bobp) (eobp)
2278 (= (match-beginning 0) (match-end 0))
2f669fac 2279 (funcall isearch-filter-predicate
5e189f39 2280 (match-beginning 0) (match-end 0)))
86bfaffe 2281 (setq retry nil)))
99ae9e9f 2282 (setq isearch-just-started nil)
8e1cae6d
JB
2283 (if isearch-success
2284 (setq isearch-other-end
2285 (if isearch-forward (match-beginning 0) (match-end 0)))))
2286
d32696d4 2287 (quit (isearch-unread ?\C-g)
8e1cae6d
JB
2288 (setq isearch-success nil))
2289
191f025a 2290 (invalid-regexp
ba653a53 2291 (setq isearch-error (car (cdr lossage)))
8e1cae6d
JB
2292 (if (string-match
2293 "\\`Premature \\|\\`Unmatched \\|\\`Invalid "
ba653a53
JL
2294 isearch-error)
2295 (setq isearch-error "incomplete input")))
2296
2297 (search-failed
2298 (setq isearch-success nil)
2299 (setq isearch-error (nth 2 lossage)))
2300
f1c03125 2301 (error
c982ab21 2302 ;; stack overflow in regexp search.
ba653a53 2303 (setq isearch-error (format "%s" lossage))))
8e1cae6d
JB
2304
2305 (if isearch-success
2306 nil
2307 ;; Ding if failed this time after succeeding last time.
1a699acf 2308 (and (isearch-success-state (car isearch-cmds))
8e1cae6d 2309 (ding))
6a18e4e7
JL
2310 (if (functionp (isearch-pop-fun-state (car isearch-cmds)))
2311 (funcall (isearch-pop-fun-state (car isearch-cmds)) (car isearch-cmds)))
1a699acf 2312 (goto-char (isearch-point-state (car isearch-cmds)))))
8e1cae6d 2313
0352b205 2314
191f025a 2315;; Called when opening an overlay, and we are still in isearch.
0352b205 2316(defun isearch-open-overlay-temporary (ov)
b48ca14f 2317 (if (not (null (overlay-get ov 'isearch-open-invisible-temporary)))
0352b205
RS
2318 ;; Some modes would want to open the overlays temporary during
2319 ;; isearch in their own way, they should set the
2320 ;; `isearch-open-invisible-temporary' to a function doing this.
2321 (funcall (overlay-get ov 'isearch-open-invisible-temporary) ov nil)
2322 ;; Store the values for the `invisible' and `intangible'
2323 ;; properties, and then set them to nil. This way the text hidden
2324 ;; by this overlay becomes visible.
2325
380866a2 2326 ;; Do we really need to set the `intangible' property to t? Can we
0352b205
RS
2327 ;; have the point inside an overlay with an `intangible' property?
2328 ;; In 19.34 this does not exist so I cannot test it.
2329 (overlay-put ov 'isearch-invisible (overlay-get ov 'invisible))
2330 (overlay-put ov 'isearch-intangible (overlay-get ov 'intangible))
2331 (overlay-put ov 'invisible nil)
2332 (overlay-put ov 'intangible nil)))
2333
2334
191f025a
SM
2335;; This is called at the end of isearch. It will open the overlays
2336;; that contain the latest match. Obviously in case of a C-g the
2337;; point returns to the original location which surely is not contain
2338;; in any of these overlays, se we are safe in this case too.
0352b205 2339(defun isearch-open-necessary-overlays (ov)
191f025a 2340 (let ((inside-overlay (and (> (point) (overlay-start ov))
0352b205
RS
2341 (< (point) (overlay-end ov))))
2342 ;; If this exists it means that the overlay was opened using
2343 ;; this function, not by us tweaking the overlay properties.
2344 (fct-temp (overlay-get ov 'isearch-open-invisible-temporary)))
2345 (when (or inside-overlay (not fct-temp))
2346 ;; restore the values for the `invisible' and `intangible'
2347 ;; properties
2348 (overlay-put ov 'invisible (overlay-get ov 'isearch-invisible))
2349 (overlay-put ov 'intangible (overlay-get ov 'isearch-intangible))
2350 (overlay-put ov 'isearch-invisible nil)
2351 (overlay-put ov 'isearch-intangible nil))
2352 (if inside-overlay
2353 (funcall (overlay-get ov 'isearch-open-invisible) ov)
2354 (if fct-temp
2355 (funcall fct-temp ov t)))))
2356
191f025a
SM
2357;; This is called when exiting isearch. It closes the temporary
2358;; opened overlays, except the ones that contain the latest match.
0352b205
RS
2359(defun isearch-clean-overlays ()
2360 (when isearch-opened-overlays
02b2f510 2361 (mapc 'isearch-open-necessary-overlays isearch-opened-overlays)
0352b205
RS
2362 (setq isearch-opened-overlays nil)))
2363
fc0eccfc
GM
2364
2365(defun isearch-intersects-p (start0 end0 start1 end1)
2366 "Return t if regions START0..END0 and START1..END1 intersect."
eaa493df
GM
2367 (or (and (>= start0 start1) (< start0 end1))
2368 (and (> end0 start1) (<= end0 end1))
2369 (and (>= start1 start0) (< start1 end0))
2370 (and (> end1 start0) (<= end1 end0))))
fc0eccfc
GM
2371
2372
191f025a
SM
2373;; Verify if the current match is outside of each element of
2374;; `isearch-opened-overlays', if so close that overlay.
fc0eccfc
GM
2375
2376(defun isearch-close-unnecessary-overlays (begin end)
2377 (let ((overlays isearch-opened-overlays))
0352b205 2378 (setq isearch-opened-overlays nil)
fc0eccfc
GM
2379 (dolist (ov overlays)
2380 (if (isearch-intersects-p begin end (overlay-start ov) (overlay-end ov))
2381 (push ov isearch-opened-overlays)
2382 (let ((fct-temp (overlay-get ov 'isearch-open-invisible-temporary)))
2383 (if fct-temp
2384 ;; If this exists it means that the overlay was opened
2385 ;; using this function, not by us tweaking the overlay
2386 ;; properties.
2387 (funcall fct-temp ov t)
2388 (overlay-put ov 'invisible (overlay-get ov 'isearch-invisible))
2389 (overlay-put ov 'intangible (overlay-get ov 'isearch-intangible))
2390 (overlay-put ov 'isearch-invisible nil)
2391 (overlay-put ov 'isearch-intangible nil)))))))
2392
0352b205 2393
86bfaffe 2394(defun isearch-range-invisible (beg end)
79c7a4fa 2395 "Return t if all the text from BEG to END is invisible."
cd59ea72
SM
2396 (when (/= beg end)
2397 ;; Check that invisibility runs up to END.
2398 (save-excursion
2399 (goto-char beg)
2400 (let (;; can-be-opened keeps track if we can open some overlays.
2401 (can-be-opened (eq search-invisible 'open))
2402 ;; the list of overlays that could be opened
2403 (crt-overlays nil))
2404 (when (and can-be-opened isearch-hide-immediately)
2405 (isearch-close-unnecessary-overlays beg end))
2406 ;; If the following character is currently invisible,
2407 ;; skip all characters with that same `invisible' property value.
2408 ;; Do that over and over.
2409 (while (and (< (point) end)
2410 (let ((prop
2411 (get-char-property (point) 'invisible)))
2412 (if (eq buffer-invisibility-spec t)
2413 prop
2414 (or (memq prop buffer-invisibility-spec)
2415 (assq prop buffer-invisibility-spec)))))
2416 (if (get-text-property (point) 'invisible)
2417 (progn
2418 (goto-char (next-single-property-change (point) 'invisible
2419 nil end))
2420 ;; if text is hidden by an `invisible' text property
2421 ;; we cannot open it at all.
2422 (setq can-be-opened nil))
2423 (when can-be-opened
2424 (let ((overlays (overlays-at (point)))
2425 ov-list
2426 o
2427 invis-prop)
2428 (while overlays
2429 (setq o (car overlays)
2430 invis-prop (overlay-get o 'invisible))
2431 (if (if (eq buffer-invisibility-spec t)
2432 invis-prop
2433 (or (memq invis-prop buffer-invisibility-spec)
2434 (assq invis-prop buffer-invisibility-spec)))
2435 (if (overlay-get o 'isearch-open-invisible)
2436 (setq ov-list (cons o ov-list))
2437 ;; We found one overlay that cannot be
2438 ;; opened, that means the whole chunk
2439 ;; cannot be opened.
2440 (setq can-be-opened nil)))
2441 (setq overlays (cdr overlays)))
2442 (if can-be-opened
2443 ;; It makes sense to append to the open
2444 ;; overlays list only if we know that this is
2445 ;; t.
2446 (setq crt-overlays (append ov-list crt-overlays)))))
2447 (goto-char (next-overlay-change (point)))))
2448 ;; See if invisibility reaches up thru END.
2449 (if (>= (point) end)
2450 (if (and can-be-opened (consp crt-overlays))
2451 (progn
2452 (setq isearch-opened-overlays
2453 (append isearch-opened-overlays crt-overlays))
2454 (mapc 'isearch-open-overlay-temporary crt-overlays)
2455 nil)
2456 (setq isearch-hidden t)))))))
08200510 2457
f2fd3261
JL
2458(defun isearch-filter-visible (beg end)
2459 "Test whether the current search hit is visible at least partially.
2460Return non-nil if the text from BEG to END is visible to Isearch as
2461determined by `isearch-range-invisible' unless invisible text can be
2462searched too when `search-invisible' is t."
5e189f39
JL
2463 (or (eq search-invisible t)
2464 (not (isearch-range-invisible beg end))))
2465
08200510 2466\f
191f025a 2467;; General utilities
08200510 2468
b78559b0
RS
2469(defun isearch-no-upper-case-p (string regexp-flag)
2470 "Return t if there are no upper case chars in STRING.
b7852303 2471If REGEXP-FLAG is non-nil, disregard letters preceded by `\\' (but not `\\\\')
b78559b0 2472since they have special meaning in a regexp."
b48ca14f 2473 (let (quote-flag (i 0) (len (length string)) found)
59057198
RS
2474 (while (and (not found) (< i len))
2475 (let ((char (aref string i)))
2476 (if (and regexp-flag (eq char ?\\))
2477 (setq quote-flag (not quote-flag))
2478 (if (and (not quote-flag) (not (eq char (downcase char))))
f4be3f89
RS
2479 (setq found t))
2480 (setq quote-flag nil)))
59057198 2481 (setq i (1+ i)))
c5f847b6
SM
2482 (not (or found
2483 ;; Even if there's no uppercase char, we want to detect the use
2484 ;; of [:upper:] or [:lower:] char-class, which indicates
2485 ;; clearly that the user cares about case distinction.
2486 (and regexp-flag (string-match "\\[:\\(upp\\|low\\)er:]" string)
2487 (condition-case err
2488 (progn
2489 (string-match (substring string 0 (match-beginning 0))
2490 "")
2491 nil)
2492 (invalid-regexp
2493 (equal "Unmatched [ or [^" (cadr err)))))))))
08200510 2494
b78559b0 2495;; Portability functions to support various Emacs versions.
8e1cae6d 2496
08200510 2497(defun isearch-text-char-description (c)
14373677 2498 (cond
cf5e4199
JL
2499 ((< c ?\s) (propertize (format "^%c" (+ c 64)) 'face 'escape-glyph))
2500 ((= c ?\^?) (propertize "^?" 'face 'escape-glyph))
14373677 2501 (t (char-to-string c))))
08200510 2502
bd1bd125 2503;; General function to unread characters or events.
99ae9e9f 2504;; Also insert them in a keyboard macro being defined.
8f90f594 2505(defun isearch-unread (&rest char-or-events)
02b2f510 2506 (mapc 'store-kbd-macro-event char-or-events)
bd1bd125
RS
2507 (setq unread-command-events
2508 (append char-or-events unread-command-events)))
08200510 2509
44336afb 2510\f
bca92193
JL
2511;; Highlighting
2512
2513(defvar isearch-overlay nil)
2514
2515(defun isearch-highlight (beg end)
704d3ae7
JL
2516 (if search-highlight
2517 (if isearch-overlay
2518 ;; Overlay already exists, just move it.
2519 (move-overlay isearch-overlay beg end (current-buffer))
2520 ;; Overlay doesn't exist, create it.
2521 (setq isearch-overlay (make-overlay beg end))
2522 ;; 1001 is higher than lazy's 1000 and ediff's 100+
2523 (overlay-put isearch-overlay 'priority 1001)
2524 (overlay-put isearch-overlay 'face isearch))))
bca92193
JL
2525
2526(defun isearch-dehighlight ()
2527 (when isearch-overlay
2528 (delete-overlay isearch-overlay)))
2529\f
191f025a
SM
2530;; isearch-lazy-highlight feature
2531;; by Bob Glickstein <http://www.zanshin.com/~bobg/>
2532
2533;; When active, *every* match for the current search string is
2534;; highlighted: the current one using the normal isearch match color
e3cde0c7 2535;; and all the others using `isearch-lazy-highlight'. The extra
191f025a
SM
2536;; highlighting makes it easier to anticipate where the cursor will
2537;; land each time you press C-s or C-r to repeat a pending search.
2538;; Highlighting of these additional matches happens in a deferred
2539;; fashion using "idle timers," so the cycles needed do not rob
2540;; isearch of its usual snappy response.
2541
2542;; IMPLEMENTATION NOTE: This depends on some isearch internals.
2543;; Specifically:
2544;; - `isearch-update' is expected to be called (at least) every time
2545;; the search string or window-start changes;
2546;; - `isearch-string' is expected to contain the current search
2547;; string as entered by the user;
2548;; - the type of the current search is expected to be given by
2549;; `isearch-word' and `isearch-regexp';
2550;; - the direction of the current search is expected to be given by
2551;; `isearch-forward';
ba653a53 2552;; - the variable `isearch-error' is expected to be true
4837b516 2553;; only if `isearch-string' is an invalid regexp.
44336afb 2554
44336afb 2555(defvar isearch-lazy-highlight-overlays nil)
c982ab21 2556(defvar isearch-lazy-highlight-wrapped nil)
f9114cec
RS
2557(defvar isearch-lazy-highlight-start-limit nil)
2558(defvar isearch-lazy-highlight-end-limit nil)
44336afb
GM
2559(defvar isearch-lazy-highlight-start nil)
2560(defvar isearch-lazy-highlight-end nil)
2561(defvar isearch-lazy-highlight-timer nil)
2562(defvar isearch-lazy-highlight-last-string nil)
c982ab21
GM
2563(defvar isearch-lazy-highlight-window nil)
2564(defvar isearch-lazy-highlight-window-start nil)
6b61353c 2565(defvar isearch-lazy-highlight-window-end nil)
46daf6c7
GM
2566(defvar isearch-lazy-highlight-case-fold-search nil)
2567(defvar isearch-lazy-highlight-regexp nil)
9a193944 2568(defvar isearch-lazy-highlight-space-regexp nil)
44336afb 2569
46fe9018 2570(defun lazy-highlight-cleanup (&optional force)
c982ab21 2571 "Stop lazy highlighting and remove extra highlighting from current buffer.
c1bc6bb6 2572FORCE non-nil means do it whether or not `lazy-highlight-cleanup'
c982ab21 2573is nil. This function is called when exiting an incremental search if
c1bc6bb6 2574`lazy-highlight-cleanup' is non-nil."
44336afb 2575 (interactive '(t))
c1bc6bb6 2576 (if (or force lazy-highlight-cleanup)
c982ab21
GM
2577 (while isearch-lazy-highlight-overlays
2578 (delete-overlay (car isearch-lazy-highlight-overlays))
2579 (setq isearch-lazy-highlight-overlays
2580 (cdr isearch-lazy-highlight-overlays))))
2581 (when isearch-lazy-highlight-timer
2582 (cancel-timer isearch-lazy-highlight-timer)
2583 (setq isearch-lazy-highlight-timer nil)))
44336afb 2584
6480c508
JB
2585(define-obsolete-function-alias 'isearch-lazy-highlight-cleanup
2586 'lazy-highlight-cleanup
2587 "22.1")
46fe9018 2588
d9dd1f33 2589(defun isearch-lazy-highlight-new-loop (&optional beg end)
c1bc6bb6 2590 "Cleanup any previous `lazy-highlight' loop and begin a new one.
f9114cec
RS
2591BEG and END specify the bounds within which highlighting should occur.
2592This is called when `isearch-update' is invoked (which can cause the
2593search string to change or the window to scroll). It is also used
2594by other Emacs features."
da79720c 2595 (when (and (null executing-kbd-macro)
c982ab21
GM
2596 (sit-for 0) ;make sure (window-start) is credible
2597 (or (not (equal isearch-string
2598 isearch-lazy-highlight-last-string))
2599 (not (eq (selected-window)
2600 isearch-lazy-highlight-window))
46daf6c7
GM
2601 (not (eq isearch-lazy-highlight-case-fold-search
2602 isearch-case-fold-search))
2603 (not (eq isearch-lazy-highlight-regexp
2604 isearch-regexp))
c982ab21 2605 (not (= (window-start)
6b61353c
KH
2606 isearch-lazy-highlight-window-start))
2607 (not (= (window-end) ; Window may have been split/joined.
2608 isearch-lazy-highlight-window-end))))
c982ab21 2609 ;; something important did indeed change
46fe9018 2610 (lazy-highlight-cleanup t) ;kill old loop & remove overlays
ba653a53 2611 (when (not isearch-error)
f9114cec
RS
2612 (setq isearch-lazy-highlight-start-limit beg
2613 isearch-lazy-highlight-end-limit end)
c982ab21
GM
2614 (setq isearch-lazy-highlight-window (selected-window)
2615 isearch-lazy-highlight-window-start (window-start)
6b61353c 2616 isearch-lazy-highlight-window-end (window-end)
c982ab21
GM
2617 isearch-lazy-highlight-start (point)
2618 isearch-lazy-highlight-end (point)
2619 isearch-lazy-highlight-last-string isearch-string
46daf6c7
GM
2620 isearch-lazy-highlight-case-fold-search isearch-case-fold-search
2621 isearch-lazy-highlight-regexp isearch-regexp
9a193944
CY
2622 isearch-lazy-highlight-wrapped nil
2623 isearch-lazy-highlight-space-regexp search-whitespace-regexp)
5f3a57c9
RS
2624 (unless (equal isearch-string "")
2625 (setq isearch-lazy-highlight-timer
c1bc6bb6 2626 (run-with-idle-timer lazy-highlight-initial-delay nil
5f3a57c9 2627 'isearch-lazy-highlight-update))))))
c982ab21
GM
2628
2629(defun isearch-lazy-highlight-search ()
2630 "Search ahead for the next or previous match, for lazy highlighting.
4b65254d 2631Attempt to do the search exactly the way the pending Isearch would."
83659220
JL
2632 (condition-case nil
2633 (let ((case-fold-search isearch-lazy-highlight-case-fold-search)
2634 (isearch-regexp isearch-lazy-highlight-regexp)
2635 (search-spaces-regexp isearch-lazy-highlight-space-regexp)
2636 (search-invisible nil) ; don't match invisible text
2637 (retry t)
2638 (success nil)
2639 (bound (if isearch-forward
2640 (min (or isearch-lazy-highlight-end-limit (point-max))
2641 (if isearch-lazy-highlight-wrapped
2642 isearch-lazy-highlight-start
2643 (window-end)))
2644 (max (or isearch-lazy-highlight-start-limit (point-min))
ba653a53 2645 (if isearch-lazy-highlight-wrapped
83659220
JL
2646 isearch-lazy-highlight-end
2647 (window-start))))))
2f669fac 2648 ;; Use a loop like in `isearch-search'.
83659220
JL
2649 (while retry
2650 (setq success (isearch-search-string
2651 isearch-lazy-highlight-last-string bound t))
2f669fac
JL
2652 ;; Clear RETRY unless the search predicate says
2653 ;; to skip this search hit.
83659220 2654 (if (or (not success)
2f669fac 2655 (funcall isearch-filter-predicate
83659220
JL
2656 (match-beginning 0) (match-end 0)))
2657 (setq retry nil)))
2658 success)
2659 (error nil)))
44336afb
GM
2660
2661(defun isearch-lazy-highlight-update ()
c982ab21 2662 "Update highlighting of other matches for current search."
c1bc6bb6 2663 (let ((max lazy-highlight-max-at-a-time)
c982ab21
GM
2664 (looping t)
2665 nomore)
6ee8e621
JL
2666 (with-local-quit
2667 (save-selected-window
2668 (if (and (window-live-p isearch-lazy-highlight-window)
2669 (not (eq (selected-window) isearch-lazy-highlight-window)))
2670 (select-window isearch-lazy-highlight-window))
2671 (save-excursion
2672 (save-match-data
2673 (goto-char (if isearch-forward
2674 isearch-lazy-highlight-end
2675 isearch-lazy-highlight-start))
2676 (while looping
2677 (let ((found (isearch-lazy-highlight-search)))
2678 (when max
2679 (setq max (1- max))
2680 (if (<= max 0)
2681 (setq looping nil)))
2682 (if found
2683 (let ((mb (match-beginning 0))
2684 (me (match-end 0)))
2685 (if (= mb me) ;zero-length match
2686 (if isearch-forward
2687 (if (= mb (if isearch-lazy-highlight-wrapped
2688 isearch-lazy-highlight-start
2689 (window-end)))
2690 (setq found nil)
2691 (forward-char 1))
2692 (if (= mb (if isearch-lazy-highlight-wrapped
2693 isearch-lazy-highlight-end
2694 (window-start)))
2695 (setq found nil)
2696 (forward-char -1)))
2697
2698 ;; non-zero-length match
2699 (let ((ov (make-overlay mb me)))
2700 (push ov isearch-lazy-highlight-overlays)
704d3ae7
JL
2701 ;; 1000 is higher than ediff's 100+,
2702 ;; but lower than isearch main overlay's 1001
2703 (overlay-put ov 'priority 1000)
46fe9018 2704 (overlay-put ov 'face lazy-highlight-face)
6ee8e621
JL
2705 (overlay-put ov 'window (selected-window))))
2706 (if isearch-forward
2707 (setq isearch-lazy-highlight-end (point))
2708 (setq isearch-lazy-highlight-start (point)))))
2709
2710 ;; not found or zero-length match at the search bound
2711 (if (not found)
2712 (if isearch-lazy-highlight-wrapped
2713 (setq looping nil
2714 nomore t)
2715 (setq isearch-lazy-highlight-wrapped t)
5ee5cd10 2716 (if isearch-forward
6ee8e621
JL
2717 (progn
2718 (setq isearch-lazy-highlight-end (window-start))
f9114cec
RS
2719 (goto-char (max (or isearch-lazy-highlight-start-limit (point-min))
2720 (window-start))))
6ee8e621 2721 (setq isearch-lazy-highlight-start (window-end))
f9114cec
RS
2722 (goto-char (min (or isearch-lazy-highlight-end-limit (point-max))
2723 (window-end))))))))
6ee8e621
JL
2724 (unless nomore
2725 (setq isearch-lazy-highlight-timer
2c987fc2 2726 (run-at-time lazy-highlight-interval nil
6ee8e621 2727 'isearch-lazy-highlight-update)))))))))
44336afb 2728
72a69d7f 2729(defun isearch-resume (string regexp word forward message case-fold)
c40a4de1 2730 "Resume an incremental search.
72a69d7f 2731STRING is the string or regexp searched for.
c40a4de1
GM
2732REGEXP non-nil means the resumed search was a regexp search.
2733WORD non-nil means resume a word search.
2734FORWARD non-nil means resume a forward search.
2735MESSAGE is the echo-area message recorded for the search resumed.
2736CASE-FOLD non-nil means the search was case-insensitive."
2737 (isearch-mode forward regexp nil nil word)
72a69d7f 2738 (setq isearch-string string
c40a4de1
GM
2739 isearch-message message
2740 isearch-case-fold-search case-fold)
72a69d7f
JL
2741 (isearch-search)
2742 (isearch-update))
191f025a 2743
81e898ea 2744;; arch-tag: 74850515-f7d8-43a6-8a2c-ca90a4c1e675
3b1e4dd1 2745;;; isearch.el ends here