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