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