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