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