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