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