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