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