1 ;;; isearch.el --- incremental search minor mode
3 ;; Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1999,
4 ;; 2000, 2001, 2003, 2004 Free Software Foundation, Inc.
6 ;; Author: Daniel LaLiberte <liberte@cs.uiuc.edu>
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 2, or (at your option)
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; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
31 ;; For programmed use of isearch-mode, e.g. calling (isearch-forward),
32 ;; isearch-mode behaves modally and does not return until the search
33 ;; is completed. It uses a recursive-edit to behave this way.
35 ;; The key bindings active within isearch-mode are defined below in
36 ;; `isearch-mode-map' which is given bindings close to the default
37 ;; characters of the original isearch.el. With `isearch-mode',
38 ;; however, you can bind multi-character keys and it should be easier
39 ;; to add new commands. One bug though: keys with meta-prefix cannot
40 ;; be longer than two chars. Also see minibuffer-local-isearch-map
41 ;; for bindings active during `isearch-edit-string'.
43 ;; isearch-mode should work even if you switch windows with the mouse,
44 ;; in which case isearch-mode is terminated automatically before the
47 ;; The search ring and completion commands automatically put you in
48 ;; the minibuffer to edit the string. This gives you a chance to
49 ;; modify the search string before executing the search. There are
50 ;; three commands to terminate the editing: C-s and C-r exit the
51 ;; minibuffer and search forward and reverse respectively, while C-m
52 ;; exits and does a nonincremental search.
54 ;; Exiting immediately from isearch uses isearch-edit-string instead
55 ;; of nonincremental-search, if search-nonincremental-instead is non-nil.
56 ;; The name of this option should probably be changed if we decide to
57 ;; keep the behavior. No point in forcing nonincremental search until
58 ;; the last possible moment.
63 ;; Some additional options and constants.
66 "Incremental search minor mode."
67 :link
'(emacs-commentary-link "isearch")
68 :link
'(custom-manual "(emacs)Incremental Search")
74 (defcustom search-exit-option t
75 "*Non-nil means random control characters terminate incremental search."
79 (defcustom search-slow-window-lines
1
80 "*Number of lines in slow search display windows.
81 These are the short windows used during incremental search on slow terminals.
82 Negative means put the slow search window at the top (normally it's at bottom)
83 and the value is minus the number of lines."
87 (defcustom search-slow-speed
1200
88 "*Highest terminal speed at which to use \"slow\" style incremental search.
89 This is the style where a one-line window is created to show the line
90 that the search has reached."
94 (defcustom search-upper-case
'not-yanks
95 "*If non-nil, upper case chars disable case fold searching.
96 That is, upper and lower case chars must match exactly.
97 This applies no matter where the chars come from, but does not
98 apply to chars in regexps that are prefixed with `\\'.
99 If this value is `not-yanks', yanked text is always downcased."
100 :type
'(choice (const :tag
"off" nil
)
105 (defcustom search-nonincremental-instead t
106 "*If non-nil, do a nonincremental search instead if exiting immediately.
107 Actually, `isearch-edit-string' is called to let you enter the search
108 string, and RET terminates editing and does a nonincremental search."
112 (defcustom search-whitespace-regexp
"\\s-+"
113 "*If non-nil, regular expression to match a sequence of whitespace chars.
114 This applies to regular expression incremental search.
115 When you put a space or spaces in the incremental regexp, it stands for
116 this, unless it is inside of a regexp construct such as [...] or *, + or ?.
117 You might want to use something like \"[ \\t\\r\\n]+\" instead.
118 In the Customization buffer, that is `[' followed by a space,
119 a tab, a carriage return (control-M), a newline, and `]+'."
123 (defcustom search-highlight t
124 "*Non-nil means incremental search highlights the current match."
128 (defcustom search-invisible
'open
129 "If t incremental search can match hidden text.
130 nil means don't match invisible text.
131 If the value is `open', if the text matched is made invisible by
132 an overlay having an `invisible' property and that overlay has a property
133 `isearch-open-invisible', then incremental search will show the contents.
134 \(This applies when using `outline.el' and `hideshow.el'.)
135 See also `reveal-mode' if you want overlays to automatically be opened
136 whenever point is in one of them."
137 :type
'(choice (const :tag
"Match hidden text" t
)
138 (const :tag
"Open overlays" open
)
139 (const :tag
"Don't match hidden text" nil
))
142 (defcustom isearch-hide-immediately t
143 "If non-nil, re-hide an invisible match right away.
144 This variable makes a difference when `search-invisible' is set to `open'.
145 It means that after search makes some invisible text visible
146 to show the match, it makes the text invisible again when the match moves.
147 Ordinarily the text becomes invisible again at the end of the search."
151 (defcustom isearch-resume-in-command-history nil
152 "*If non-nil, `isearch-resume' commands are added to the command history.
153 This allows you to resume earlier isearch sessions through the
158 (defvar isearch-mode-hook nil
159 "Function(s) to call after starting up an incremental search.")
161 (defvar isearch-mode-end-hook nil
162 "Function(s) to call after terminating an incremental search.")
164 (defvar isearch-wrap-function nil
165 "Function to call to wrap the search when search is failed.
166 If nil, move point to the beginning of the buffer for a forward search,
167 or to the end of the buffer for a backward search.")
169 (defvar isearch-push-state-function nil
170 "Function to save a function restoring the mode-specific isearch state
171 to the search status stack.")
175 (defvar search-ring nil
176 "List of search string sequences.")
177 (defvar regexp-search-ring nil
178 "List of regular expression search string sequences.")
180 (defcustom search-ring-max
16
181 "*Maximum length of search ring before oldest elements are thrown away."
184 (defcustom regexp-search-ring-max
16
185 "*Maximum length of regexp search ring before oldest elements are thrown away."
189 (defvar search-ring-yank-pointer nil
190 "Index in `search-ring' of last string reused.
192 (defvar regexp-search-ring-yank-pointer nil
193 "Index in `regexp-search-ring' of last string reused.
196 (defcustom search-ring-update nil
197 "*Non-nil if advancing or retreating in the search ring should cause search.
198 Default value, nil, means edit the string instead."
202 ;; Define isearch-mode keymap.
204 (defvar isearch-mode-map
207 (or (vectorp (nth 1 map
))
208 (char-table-p (nth 1 map
))
209 (error "The initialization of isearch-mode-map must be updated"))
210 ;; Make all multibyte characters search for themselves.
211 (let ((l (generic-character-list))
214 (set-char-table-default table
(car l
) 'isearch-printing-char
)
216 ;; Make function keys, etc, which aren't bound to a scrolling-function
218 (define-key map
[t] 'isearch-other-control-char)
219 ;; Control chars, by default, end isearch mode transparently.
220 ;; We need these explicit definitions because, in a dense keymap,
221 ;; the binding for t does not affect characters.
222 ;; We use a dense keymap to save space.
224 (define-key map (make-string 1 i) 'isearch-other-control-char)
227 ;; Single-byte printing chars extend the search string by default.
230 (define-key map (vector i) 'isearch-printing-char)
233 ;; To handle local bindings with meta char prefix keys, define
234 ;; another full keymap. This must be done for any other prefix
235 ;; keys as well, one full keymap per char of the prefix key. It
236 ;; would be simpler to disable the global keymap, and/or have a
237 ;; default local key binding for any key not otherwise bound.
238 (let ((meta-map (make-sparse-keymap)))
239 (define-key map (char-to-string meta-prefix-char) meta-map)
240 (define-key map [escape] meta-map))
241 (define-key map (vector meta-prefix-char t) 'isearch-other-meta-char)
243 ;; Several non-printing chars change the searching behavior.
244 (define-key map "\C-s" 'isearch-repeat-forward)
245 (define-key map "\C-r" 'isearch-repeat-backward)
246 ;; Define M-C-s and M-C-r like C-s and C-r so that the same key
247 ;; combinations can be used to repeat regexp isearches that can
248 ;; be used to start these searches.
249 (define-key map "\M-\C-s" 'isearch-repeat-forward)
250 (define-key map "\M-\C-r" 'isearch-repeat-backward)
251 (define-key map "\177" 'isearch-delete-char)
252 (define-key map "\C-g" 'isearch-abort)
254 ;; This assumes \e is the meta-prefix-char.
255 (or (= ?\e meta-prefix-char)
256 (error "Inconsistency in isearch.el"))
257 (define-key map "\e\e\e" 'isearch-cancel)
258 (define-key map [escape escape escape] 'isearch-cancel)
260 (define-key map "\C-q" 'isearch-quote-char)
262 (define-key map "\r" 'isearch-exit)
263 (define-key map "\C-j" 'isearch-printing-char)
264 (define-key map "\t" 'isearch-printing-char)
265 (define-key map [?\S-\ ] 'isearch-printing-char)
267 (define-key map "\C-w" 'isearch-yank-word-or-char)
268 (define-key map "\M-\C-w" 'isearch-del-char)
269 (define-key map "\M-\C-y" 'isearch-yank-char)
270 (define-key map "\C-y" 'isearch-yank-line)
272 ;; Define keys for regexp chars * ? } |.
273 ;; Nothing special for + because it matches at least once.
274 (define-key map "*" 'isearch-*-char)
275 (define-key map "?" 'isearch-*-char)
276 (define-key map "}" 'isearch-}-char)
277 (define-key map "|" 'isearch-|-char)
279 ;; Turned off because I find I expect to get the global definition--rms.
280 ;; ;; Instead bind C-h to special help command for isearch-mode.
281 ;; (define-key map "\C-h" 'isearch-mode-help)
283 (define-key map "\M-n" 'isearch-ring-advance)
284 (define-key map "\M-p" 'isearch-ring-retreat)
285 (define-key map "\M-y" 'isearch-yank-kill)
287 (define-key map "\M-\t" 'isearch-complete)
289 ;; Pass frame events transparently so they won't exit the search.
290 ;; In particular, if we have more than one display open, then a
291 ;; switch-frame might be generated by someone typing at another keyboard.
292 (define-key map [switch-frame] nil)
293 (define-key map [delete-frame] nil)
294 (define-key map [iconify-frame] nil)
295 (define-key map [make-frame-visible] nil)
296 (define-key map [mouse-movement] nil)
297 ;; For searching multilingual text.
298 (define-key map "\C-\\" 'isearch-toggle-input-method)
299 (define-key map "\C-^" 'isearch-toggle-specified-input-method)
301 ;; People expect to be able to paste with the mouse.
302 (define-key map [mouse-2] #'isearch-mouse-2)
303 (define-key map [down-mouse-2] nil)
305 ;; Some bindings you may want to put in your isearch-mode-hook.
306 ;; Suggest some alternates...
307 (define-key map "\M-c" 'isearch-toggle-case-fold)
308 (define-key map "\M-r" 'isearch-toggle-regexp)
309 (define-key map "\M-e" 'isearch-edit-string)
311 (define-key map [?\M-%] 'isearch-query-replace)
312 (define-key map [?\C-\M-%] 'isearch-query-replace-regexp)
315 "Keymap for `isearch-mode'.")
317 (defvar minibuffer-local-isearch-map
318 (let ((map (make-sparse-keymap)))
319 (set-keymap-parent map minibuffer-local-map)
320 (define-key map "\r" 'isearch-nonincremental-exit-minibuffer)
321 (define-key map "\M-n" 'isearch-ring-advance-edit)
322 (define-key map [next] 'isearch-ring-advance-edit)
323 (define-key map [down] 'isearch-ring-advance-edit)
324 (define-key map "\M-p" 'isearch-ring-retreat-edit)
325 (define-key map [prior] 'isearch-ring-retreat-edit)
326 (define-key map [up] 'isearch-ring-retreat-edit)
327 (define-key map "\M-\t" 'isearch-complete-edit)
328 (define-key map "\C-s" 'isearch-forward-exit-minibuffer)
329 (define-key map "\C-r" 'isearch-reverse-exit-minibuffer)
330 (define-key map "\C-f" 'isearch-yank-char-in-minibuffer)
331 (define-key map [right] 'isearch-yank-char-in-minibuffer)
333 "Keymap for editing isearch strings in the minibuffer.")
335 ;; Internal variables declared globally for byte-compiler.
336 ;; These are all set with setq while isearching
337 ;; and bound locally while editing the search string.
339 (defvar isearch-forward nil) ; Searching in the forward direction.
340 (defvar isearch-regexp nil) ; Searching for a regexp.
341 (defvar isearch-word nil) ; Searching for words.
342 (defvar isearch-hidden nil) ; Non-nil if the string exists but is invisible.
344 (defvar isearch-cmds nil
345 "Stack of search status sets.
346 Each set is a vector of the form:
347 [STRING MESSAGE POINT SUCCESS FORWARD OTHER-END WORD
348 INVALID-REGEXP WRAPPED BARRIER WITHIN-BRACKETS CASE-FOLD-SEARCH]")
350 (defvar isearch-string "") ; The current search string.
351 (defvar isearch-message "") ; text-char-description version of isearch-string
353 (defvar isearch-success t) ; Searching is currently successful.
354 (defvar isearch-invalid-regexp nil) ; Regexp not well formed.
355 (defvar isearch-within-brackets nil) ; Regexp has unclosed [.
356 (defvar isearch-other-end nil) ; Start (end) of match if forward (backward).
357 (defvar isearch-wrapped nil) ; Searching restarted from the top (bottom).
358 (defvar isearch-barrier 0)
359 (defvar isearch-just-started nil)
360 (defvar isearch-start-hscroll 0) ; hscroll when starting the search.
362 ; case-fold-search while searching.
363 ; either nil, t, or 'yes. 'yes means the same as t except that mixed
364 ; case in the search string is ignored.
365 (defvar isearch-case-fold-search nil)
367 (defvar isearch-last-case-fold-search nil)
369 ;; Used to save default value while isearch is active
370 (defvar isearch-original-minibuffer-message-timeout nil)
372 (defvar isearch-adjusted nil)
373 (defvar isearch-slow-terminal-mode nil)
374 ;; If t, using a small window.
375 (defvar isearch-small-window nil)
376 (defvar isearch-opoint 0)
377 ;; The window configuration active at the beginning of the search.
378 (defvar isearch-window-configuration nil)
380 ;; Flag to indicate a yank occurred, so don't move the cursor.
381 (defvar isearch-yank-flag nil)
383 ;; A function to be called after each input character is processed.
384 ;; (It is not called after characters that exit the search.)
385 ;; It is only set from an optional argument to `isearch-mode'.
386 (defvar isearch-op-fun nil)
388 ;; Is isearch-mode in a recursive edit for modal searching.
389 (defvar isearch-recursive-edit nil)
391 ;; Should isearch be terminated after doing one search?
392 (defvar isearch-nonincremental nil)
394 ;; New value of isearch-forward after isearch-edit-string.
395 (defvar isearch-new-forward nil)
397 ;; Accumulate here the overlays opened during searching.
398 (defvar isearch-opened-overlays nil)
400 ;; The value of input-method-function when isearch is invoked.
401 (defvar isearch-input-method-function nil)
403 ;; A flag to tell if input-method-function is locally bound when
404 ;; isearch is invoked.
405 (defvar isearch-input-method-local-p nil)
407 ;; Minor-mode-alist changes - kind of redundant with the
408 ;; echo area, but if isearching in multiple windows, it can be useful.
410 (or (assq 'isearch-mode minor-mode-alist)
411 (nconc minor-mode-alist
412 (list '(isearch-mode isearch-mode))))
414 (defvar isearch-mode nil) ;; Name of the minor mode, if non-nil.
415 (make-variable-buffer-local 'isearch-mode)
417 (define-key global-map "\C-s" 'isearch-forward)
418 (define-key esc-map "\C-s" 'isearch-forward-regexp)
419 (define-key global-map "\C-r" 'isearch-backward)
420 (define-key esc-map "\C-r" 'isearch-backward-regexp)
422 ;; Entry points to isearch-mode.
424 (defun isearch-forward (&optional regexp-p no-recursive-edit)
426 Do incremental search forward.
427 With a prefix argument, do an incremental regular expression search instead.
429 As you type characters, they add to the search string and are found.
430 The following non-printing keys are bound in `isearch-mode-map'.
432 Type \\[isearch-delete-char] to cancel last input item from end of search string.
433 Type \\[isearch-exit] to exit, leaving point at location found.
434 Type LFD (C-j) to match end of line.
435 Type \\[isearch-repeat-forward] to search again forward,\
436 \\[isearch-repeat-backward] to search again backward.
437 Type \\[isearch-yank-word-or-char] to yank word from buffer onto end of search\
438 string and search for it.
439 Type \\[isearch-del-char] to delete character from end of search string.
440 Type \\[isearch-yank-char] to yank char from buffer onto end of search\
441 string and search for it.
442 Type \\[isearch-yank-line] to yank rest of line onto end of search string\
444 Type \\[isearch-yank-kill] to yank last killed text onto end of search string\
446 Type \\[isearch-quote-char] to quote control character to search for it.
447 \\[isearch-abort] while searching or when search has failed cancels input\
449 been found successfully.
450 \\[isearch-abort] when search is successful aborts and moves point to\
453 Type \\[isearch-toggle-case-fold] to toggle search case-sensitivity.
454 Type \\[isearch-toggle-regexp] to toggle regular-expression mode.
455 Type \\[isearch-edit-string] to edit the search string in the minibuffer.
457 Also supported is a search ring of the previous 16 search strings.
458 Type \\[isearch-ring-advance] to search for the next item in the search ring.
459 Type \\[isearch-ring-retreat] to search for the previous item in the search\
461 Type \\[isearch-complete] to complete the search string using the search ring.
463 If an input method is turned on in the current buffer, that input
464 method is also active while you are typing characters to search. To
465 toggle the input method, type \\[isearch-toggle-input-method]. It
466 also toggles the input method in the current buffer.
468 To use a different input method for searching, type
469 \\[isearch-toggle-specified-input-method], and specify an input method
472 The above keys, bound in `isearch-mode-map', are often controlled by
473 options; do \\[apropos] on search-.* to find them.
474 Other control and meta characters terminate the search
475 and are then executed normally (depending on `search-exit-option').
476 Likewise for function keys and mouse button events.
478 If this function is called non-interactively, it does not return to
479 the calling function until the search is done."
482 (isearch-mode t (not (null regexp-p)) nil (not no-recursive-edit)))
484 (defun isearch-forward-regexp (&optional not-regexp no-recursive-edit)
486 Do incremental search forward for regular expression.
487 With a prefix argument, do a regular string search instead.
488 Like ordinary incremental search except that your input
489 is treated as a regexp. See \\[isearch-forward] for more info.
491 In regexp incremental searches, a space or spaces normally matches
492 any whitespace (the variable `search-whitespace-regexp' controls
493 precisely what that means). If you want to search for a literal space
494 and nothing else, enter `[ ]'."
496 (isearch-mode t (null not-regexp) nil (not no-recursive-edit)))
498 (defun isearch-backward (&optional regexp-p no-recursive-edit)
500 Do incremental search backward.
501 With a prefix argument, do a regular expression search instead.
502 See \\[isearch-forward] for more information."
504 (isearch-mode nil (not (null regexp-p)) nil (not no-recursive-edit)))
506 (defun isearch-backward-regexp (&optional not-regexp no-recursive-edit)
508 Do incremental search backward for regular expression.
509 With a prefix argument, do a regular string search instead.
510 Like ordinary incremental search except that your input
511 is treated as a regexp. See \\[isearch-forward] for more info."
513 (isearch-mode nil (null not-regexp) nil (not no-recursive-edit)))
516 (defun isearch-mode-help ()
518 (describe-function 'isearch-forward)
522 ;; isearch-mode only sets up incremental search for the minor mode.
523 ;; All the work is done by the isearch-mode commands.
526 ;;(defvar isearch-commands '(isearch-forward isearch-backward
527 ;; isearch-forward-regexp isearch-backward-regexp)
528 ;; "List of commands for which isearch-mode does not recursive-edit.")
531 (defun isearch-mode (forward &optional regexp op-fun recursive-edit word-p)
532 "Start isearch minor mode. Called by `isearch-forward', etc.
534 \\{isearch-mode-map}"
536 ;; Initialize global vars.
537 (setq isearch-forward forward
538 isearch-regexp regexp
540 isearch-op-fun op-fun
541 isearch-last-case-fold-search isearch-case-fold-search
542 isearch-case-fold-search case-fold-search
548 isearch-barrier (point)
550 isearch-yank-flag nil
551 isearch-invalid-regexp nil
552 isearch-within-brackets nil
553 isearch-slow-terminal-mode (and (<= baud-rate search-slow-speed)
556 (abs search-slow-window-lines))))
557 isearch-other-end nil
558 isearch-small-window nil
559 isearch-just-started t
560 isearch-start-hscroll (window-hscroll)
562 isearch-opoint (point)
563 search-ring-yank-pointer nil
564 isearch-opened-overlays nil
565 isearch-input-method-function input-method-function
566 isearch-input-method-local-p (local-variable-p 'input-method-function)
567 regexp-search-ring-yank-pointer nil
569 ;; Save the original value of `minibuffer-message-timeout', and
570 ;; set it to nil so that isearch's messages don't get timed out.
571 isearch-original-minibuffer-message-timeout minibuffer-message-timeout
572 minibuffer-message-timeout nil)
574 ;; We must bypass input method while reading key. When a user type
575 ;; printable character, appropriate input method is turned on in
576 ;; minibuffer to read multibyte characters.
577 (or isearch-input-method-local-p
578 (make-local-variable 'input-method-function))
579 (setq input-method-function nil)
582 (setq isearch-window-configuration
583 (if isearch-slow-terminal-mode (current-window-configuration) nil))
585 ;; Maybe make minibuffer frame visible and/or raise it.
586 (let ((frame (window-frame (minibuffer-window))))
587 (unless (memq (frame-live-p frame) '(nil t))
588 (unless (frame-visible-p frame)
589 (make-frame-visible frame))
590 (if minibuffer-auto-raise
591 (raise-frame frame))))
593 (setq isearch-mode " Isearch") ;; forward? regexp?
594 (force-mode-line-update)
598 (setq overriding-terminal-local-map isearch-mode-map)
600 (run-hooks 'isearch-mode-hook)
602 (add-hook 'mouse-leave-buffer-hook 'isearch-done)
603 (add-hook 'kbd-macro-termination-hook 'isearch-done)
605 ;; isearch-mode can be made modal (in the sense of not returning to
606 ;; the calling function until searching is completed) by entering
607 ;; a recursive-edit and exiting it when done isearching.
609 (let ((isearch-recursive-edit t))
614 ;; Some high level utilities. Others below.
616 (defun isearch-update ()
617 ;; Called after each command to update the display.
618 (if (and (null unread-command-events)
619 (null executing-kbd-macro))
621 (if (not (input-pending-p))
623 (if (and isearch-slow-terminal-mode
624 (not (or isearch-small-window
625 (pos-visible-in-window-p))))
626 (let ((found-point (point)))
627 (setq isearch-small-window t)
628 (move-to-window-line 0)
629 (let ((window-min-height 1))
630 (split-window nil (if (< search-slow-window-lines 0)
631 (1+ (- search-slow-window-lines))
633 (1+ search-slow-window-lines)))))
634 (if (< search-slow-window-lines 0)
635 (progn (vertical-motion (- 1 search-slow-window-lines))
636 (set-window-start (next-window) (point))
637 (set-window-hscroll (next-window)
639 (set-window-hscroll (selected-window) 0))
641 (goto-char found-point))
642 ;; Keep same hscrolling as at the start of the search when possible
643 (let ((current-scroll (window-hscroll)))
644 (set-window-hscroll (selected-window) isearch-start-hscroll)
645 (unless (pos-visible-in-window-p)
646 (set-window-hscroll (selected-window) current-scroll))))
647 (if isearch-other-end
648 (if (< isearch-other-end (point)) ; isearch-forward?
649 (isearch-highlight isearch-other-end (point))
650 (isearch-highlight (point) isearch-other-end))
651 (isearch-dehighlight nil))
653 (setq ;; quit-flag nil not for isearch-mode
655 isearch-yank-flag nil)
656 (isearch-lazy-highlight-new-loop)
657 ;; We must prevent the point moving to the end of composition when a
658 ;; part of the composition has just been searched.
659 (setq disable-point-adjustment t))
661 (defun isearch-done (&optional nopush edit)
662 (if isearch-resume-in-command-history
663 (let ((command `(isearch-resume ,isearch-string ,isearch-regexp
664 ,isearch-word ,isearch-forward
666 ',isearch-case-fold-search)))
667 (unless (equal (car command-history) command)
668 (setq command-history (cons command command-history)))))
670 (remove-hook 'mouse-leave-buffer-hook 'isearch-done)
671 (remove-hook 'kbd-macro-termination-hook 'isearch-done)
672 (setq isearch-lazy-highlight-start nil)
674 ;; Called by all commands that terminate isearch-mode.
675 ;; If NOPUSH is non-nil, we don't push the string on the search ring.
676 (setq overriding-terminal-local-map nil)
677 ;; (setq pre-command-hook isearch-old-pre-command-hook) ; for lemacs
678 (setq minibuffer-message-timeout isearch-original-minibuffer-message-timeout)
679 (isearch-dehighlight t)
680 (isearch-lazy-highlight-cleanup isearch-lazy-highlight-cleanup)
681 (let ((found-start (window-start (selected-window)))
682 (found-point (point)))
683 (if isearch-window-configuration
684 (set-window-configuration isearch-window-configuration))
686 (if isearch-small-window
687 (goto-char found-point)
688 ;; Exiting the save-window-excursion clobbers window-start; restore it.
689 (set-window-start (selected-window) found-start t)))
691 (setq isearch-mode nil)
692 (if isearch-input-method-local-p
693 (setq input-method-function isearch-input-method-function)
694 (kill-local-variable 'input-method-function))
696 (force-mode-line-update)
698 ;; If we ended in the middle of some intangible text,
699 ;; move to the further end of that intangible text.
700 (let ((after (if (eobp) nil
701 (get-text-property (point) 'intangible)))
702 (before (if (bobp) nil
703 (get-text-property (1- (point)) 'intangible))))
704 (when (and before after (eq before after))
706 (goto-char (next-single-property-change (point) 'intangible))
707 (goto-char (previous-single-property-change (point) 'intangible)))))
709 (if (and (> (length isearch-string) 0) (not nopush))
710 ;; Update the ring data.
711 (isearch-update-ring isearch-string isearch-regexp))
713 (run-hooks 'isearch-mode-end-hook)
715 ;; If there was movement, mark the starting position.
716 ;; Maybe should test difference between and set mark iff > threshold.
717 (if (/= (point) isearch-opoint)
718 (or (and transient-mark-mode mark-active)
720 (push-mark isearch-opoint t)
721 (or executing-kbd-macro (> (minibuffer-depth) 0)
722 (message "Mark saved where search started")))))
724 (and (not edit) isearch-recursive-edit (exit-recursive-edit)))
726 (defun isearch-update-ring (string &optional regexp)
727 "Add STRING to the beginning of the search ring.
728 REGEXP says which ring to use."
730 (if (or (null regexp-search-ring)
731 (not (string= string (car regexp-search-ring))))
733 (push string regexp-search-ring)
734 (if (> (length regexp-search-ring) regexp-search-ring-max)
735 (setcdr (nthcdr (1- search-ring-max) regexp-search-ring)
737 (if (or (null search-ring)
738 (not (string= string (car search-ring))))
740 (push string search-ring)
741 (if (> (length search-ring) search-ring-max)
742 (setcdr (nthcdr (1- search-ring-max) search-ring) nil))))))
744 ;; Switching buffers should first terminate isearch-mode.
745 ;; ;; For Emacs 19, the frame switch event is handled.
746 ;; (defun isearch-switch-frame-handler ()
747 ;; (interactive) ;; Is this necessary?
748 ;; ;; First terminate isearch-mode.
750 ;; (isearch-clean-overlays)
751 ;; (handle-switch-frame (car (cdr last-command-char))))
754 ;; The search status structure and stack.
756 (defsubst isearch-string-state (frame)
757 "Return the search string in FRAME."
759 (defsubst isearch-message-state (frame)
760 "Return the search string to display to the user in FRAME."
762 (defsubst isearch-point-state (frame)
763 "Return the point in FRAME."
765 (defsubst isearch-success-state (frame)
766 "Return the success flag in FRAME."
768 (defsubst isearch-forward-state (frame)
769 "Return the searching-forward flag in FRAME."
771 (defsubst isearch-other-end-state (frame)
772 "Return the other end of the match in FRAME."
774 (defsubst isearch-word-state (frame)
775 "Return the search-by-word flag in FRAME."
777 (defsubst isearch-invalid-regexp-state (frame)
778 "Return the regexp error message in FRAME, or nil if its regexp is valid."
780 (defsubst isearch-wrapped-state (frame)
781 "Return the search-wrapped flag in FRAME."
783 (defsubst isearch-barrier-state (frame)
784 "Return the barrier value in FRAME."
786 (defsubst isearch-within-brackets-state (frame)
787 "Return the in-character-class flag in FRAME."
789 (defsubst isearch-case-fold-search-state (frame)
790 "Return the case-folding flag in FRAME."
792 (defsubst isearch-pop-fun-state (frame)
793 "Return the function restoring the mode-specific isearch state in FRAME."
796 (defun isearch-top-state ()
797 (let ((cmd (car isearch-cmds)))
798 (setq isearch-string (isearch-string-state cmd)
799 isearch-message (isearch-message-state cmd)
800 isearch-success (isearch-success-state cmd)
801 isearch-forward (isearch-forward-state cmd)
802 isearch-other-end (isearch-other-end-state cmd)
803 isearch-word (isearch-word-state cmd)
804 isearch-invalid-regexp (isearch-invalid-regexp-state cmd)
805 isearch-wrapped (isearch-wrapped-state cmd)
806 isearch-barrier (isearch-barrier-state cmd)
807 isearch-within-brackets (isearch-within-brackets-state cmd)
808 isearch-case-fold-search (isearch-case-fold-search-state cmd))
809 (if (functionp (isearch-pop-fun-state cmd))
810 (funcall (isearch-pop-fun-state cmd) cmd))
811 (goto-char (isearch-point-state cmd))))
813 (defun isearch-pop-state ()
814 (setq isearch-cmds (cdr isearch-cmds))
817 (defun isearch-push-state ()
819 (cons (vector isearch-string isearch-message (point)
820 isearch-success isearch-forward isearch-other-end
822 isearch-invalid-regexp isearch-wrapped isearch-barrier
823 isearch-within-brackets isearch-case-fold-search
824 (if isearch-push-state-function
825 (funcall isearch-push-state-function)))
829 ;; Commands active while inside of the isearch minor mode.
831 (defun isearch-exit ()
832 "Exit search normally.
833 However, if this is the first command after starting incremental
834 search and `search-nonincremental-instead' is non-nil, do a
835 nonincremental search instead via `isearch-edit-string'."
837 (if (and search-nonincremental-instead
838 (= 0 (length isearch-string)))
839 (let ((isearch-nonincremental t))
840 (isearch-edit-string)))
842 (isearch-clean-overlays))
845 (defun isearch-edit-string ()
846 "Edit the search string in the minibuffer.
847 The following additional command keys are active while editing.
848 \\<minibuffer-local-isearch-map>
849 \\[exit-minibuffer] to resume incremental searching with the edited string.
850 \\[isearch-nonincremental-exit-minibuffer] to do one nonincremental search.
851 \\[isearch-forward-exit-minibuffer] to resume isearching forward.
852 \\[isearch-reverse-exit-minibuffer] to resume isearching backward.
853 \\[isearch-ring-advance-edit] to replace the search string with the next item in the search ring.
854 \\[isearch-ring-retreat-edit] to replace the search string with the previous item in the search ring.
855 \\[isearch-complete-edit] to complete the search string using the search ring.
857 If first char entered is \\[isearch-yank-word-or-char], then do word search instead."
859 ;; This code is very hairy for several reasons, explained in the code.
860 ;; Mainly, isearch-mode must be terminated while editing and then restarted.
861 ;; If there were a way to catch any change of buffer from the minibuffer,
862 ;; this could be simplified greatly.
863 ;; Editing doesn't back up the search point. Should it?
867 (let ((isearch-nonincremental isearch-nonincremental)
869 ;; Locally bind all isearch global variables to protect them
870 ;; from recursive isearching.
871 ;; isearch-string -message and -forward are not bound
872 ;; so they may be changed. Instead, save the values.
873 (isearch-new-string isearch-string)
874 (isearch-new-message isearch-message)
875 (isearch-new-forward isearch-forward)
876 (isearch-new-word isearch-word)
878 (isearch-regexp isearch-regexp)
879 (isearch-op-fun isearch-op-fun)
880 (isearch-cmds isearch-cmds)
881 (isearch-success isearch-success)
882 (isearch-wrapped isearch-wrapped)
883 (isearch-barrier isearch-barrier)
884 (isearch-adjusted isearch-adjusted)
885 (isearch-yank-flag isearch-yank-flag)
886 (isearch-invalid-regexp isearch-invalid-regexp)
887 (isearch-within-brackets isearch-within-brackets)
888 ;;; Don't bind this. We want isearch-search, below, to set it.
889 ;;; And the old value won't matter after that.
890 ;;; (isearch-other-end isearch-other-end)
891 ;;; Perhaps some of these other variables should be bound for a
892 ;;; shorter period, ending before the next isearch-search.
893 ;;; But there doesn't seem to be a real bug, so let's not risk it now.
894 (isearch-opoint isearch-opoint)
895 (isearch-slow-terminal-mode isearch-slow-terminal-mode)
896 (isearch-small-window isearch-small-window)
897 (isearch-recursive-edit isearch-recursive-edit)
898 ;; Save current configuration so we can restore it here.
899 (isearch-window-configuration (current-window-configuration))
901 ;; Temporarily restore `minibuffer-message-timeout'.
902 (minibuffer-message-timeout
903 isearch-original-minibuffer-message-timeout)
904 (isearch-original-minibuffer-message-timeout
905 isearch-original-minibuffer-message-timeout)
908 ;; Actually terminate isearching until editing is done.
909 ;; This is so that the user can do anything without failure,
910 ;; like switch buffers and start another isearch, and return.
913 (exit nil)) ; was recursive editing
915 (isearch-message) ;; for read-char
917 (let* (;; Why does following read-char echo?
918 ;;(echo-keystrokes 0) ;; not needed with above message
919 (e (let ((cursor-in-echo-area t))
921 ;; Binding minibuffer-history-symbol to nil is a work-around
922 ;; for some incompatibility with gmhist.
923 (minibuffer-history-symbol)
924 (message-log-max nil))
925 ;; If the first character the user types when we prompt them
926 ;; for a string is the yank-word character, then go into
927 ;; word-search mode. Otherwise unread that character and
928 ;; read a key the normal way.
929 ;; Word search does not apply (yet) to regexp searches,
930 ;; no check is made here.
931 (message (isearch-message-prefix nil nil t))
932 (if (memq (lookup-key isearch-mode-map (vector e))
934 isearch-yank-word-or-char))
935 (setq isearch-word t;; so message-prefix is right
937 (cancel-kbd-macro-events)
939 (setq cursor-in-echo-area nil)
940 (setq isearch-new-string
942 (read-from-minibuffer
943 (isearch-message-prefix nil nil isearch-nonincremental)
945 minibuffer-local-isearch-map nil
948 (mapconcat 'isearch-text-char-description
949 isearch-new-string "")))
950 ;; Always resume isearching by restarting it.
951 (isearch-mode isearch-forward
957 ;; Copy new local values to isearch globals
958 (setq isearch-string isearch-new-string
959 isearch-message isearch-new-message
960 isearch-forward isearch-new-forward
961 isearch-word isearch-new-word))
963 ;; Empty isearch-string means use default.
964 (if (= 0 (length isearch-string))
965 (setq isearch-string (or (car (if isearch-regexp
971 (mapconcat 'isearch-text-char-description
973 ;; This used to set the last search string,
974 ;; but I think it is not right to do that here.
975 ;; Only the string actually used should be saved.
978 ;; Push the state as of before this C-s.
981 ;; Reinvoke the pending search.
984 (if isearch-nonincremental
986 ;; (sit-for 1) ;; needed if isearch-done does: (message "")
989 (quit ; handle abort-recursive-edit
990 (isearch-abort) ;; outside of let to restore outside global values
993 (defun isearch-nonincremental-exit-minibuffer ()
995 (setq isearch-nonincremental t)
998 (defun isearch-forward-exit-minibuffer ()
1000 (setq isearch-new-forward t)
1003 (defun isearch-reverse-exit-minibuffer ()
1005 (setq isearch-new-forward nil)
1008 (defun isearch-cancel ()
1009 "Terminate the search and go back to the starting point."
1011 (if (functionp (isearch-pop-fun-state (car (last isearch-cmds))))
1012 (funcall (isearch-pop-fun-state (car (last isearch-cmds)))
1013 (car (last isearch-cmds))))
1014 (goto-char isearch-opoint)
1015 (isearch-done t) ; exit isearch
1016 (isearch-clean-overlays)
1017 (signal 'quit nil)) ; and pass on quit signal
1019 (defun isearch-abort ()
1020 "Abort incremental search mode if searching is successful, signaling quit.
1021 Otherwise, revert to previous successful search and continue searching.
1022 Use `isearch-exit' to quit without signaling."
1024 ;; (ding) signal instead below, if quitting
1027 ;; If search is successful, move back to starting point
1028 ;; and really do quit.
1030 (setq isearch-success nil)
1032 ;; If search is failing, or has an incomplete regexp,
1033 ;; rub out until it is once more successful.
1034 (while (or (not isearch-success) isearch-invalid-regexp)
1035 (isearch-pop-state))
1038 (defun isearch-repeat (direction)
1039 ;; Utility for isearch-repeat-forward and -backward.
1040 (if (eq isearch-forward (eq direction 'forward))
1041 ;; C-s in forward or C-r in reverse.
1042 (if (equal isearch-string "")
1043 ;; If search string is empty, use last one.
1044 (setq isearch-string
1045 (or (if isearch-regexp
1046 (car regexp-search-ring)
1048 (error "No previous search string"))
1050 (mapconcat 'isearch-text-char-description
1052 isearch-case-fold-search isearch-last-case-fold-search)
1053 ;; If already have what to search for, repeat it.
1056 (if isearch-wrap-function
1057 (funcall isearch-wrap-function)
1058 (goto-char (if isearch-forward (point-min) (point-max))))
1059 (setq isearch-wrapped t))))
1060 ;; C-s in reverse or C-r in forward, change direction.
1061 (setq isearch-forward (not isearch-forward)))
1063 (setq isearch-barrier (point)) ; For subsequent \| if regexp.
1065 (if (equal isearch-string "")
1066 (setq isearch-success t)
1067 (if (and isearch-success
1068 (equal (point) isearch-other-end)
1069 (not isearch-just-started))
1070 ;; If repeating a search that found
1071 ;; an empty string, ensure we advance.
1072 (if (if isearch-forward (eobp) (bobp))
1073 ;; If there's nowhere to advance to, fail (and wrap next time).
1075 (setq isearch-success nil)
1077 (forward-char (if isearch-forward 1 -1))
1081 (isearch-push-state)
1084 (defun isearch-repeat-forward ()
1085 "Repeat incremental search forwards."
1087 (isearch-repeat 'forward))
1089 (defun isearch-repeat-backward ()
1090 "Repeat incremental search backwards."
1092 (isearch-repeat 'backward))
1094 (defun isearch-toggle-regexp ()
1095 "Toggle regexp searching on or off."
1096 ;; The status stack is left unchanged.
1098 (setq isearch-regexp (not isearch-regexp))
1099 (if isearch-regexp (setq isearch-word nil))
1100 (setq isearch-success t isearch-adjusted t)
1103 (defun isearch-toggle-case-fold ()
1104 "Toggle case folding in searching on or off."
1106 (setq isearch-case-fold-search
1107 (if isearch-case-fold-search nil 'yes))
1108 (let ((message-log-max nil))
1109 (message "%s%s [case %ssensitive]"
1110 (isearch-message-prefix nil nil isearch-nonincremental)
1112 (if isearch-case-fold-search "in" "")))
1113 (setq isearch-success t isearch-adjusted t)
1117 (defun isearch-query-replace (&optional regexp-flag)
1118 "Start query-replace with string to replace from last search string."
1120 (barf-if-buffer-read-only)
1121 (if regexp-flag (setq isearch-regexp t))
1122 (let ((case-fold-search isearch-case-fold-search))
1124 (isearch-clean-overlays)
1125 (if (and (< isearch-other-end (point))
1126 (not (and transient-mark-mode mark-active
1127 (< isearch-opoint (point)))))
1128 (goto-char isearch-other-end))
1129 (set query-replace-from-history-variable
1130 (cons isearch-string
1131 (symbol-value query-replace-from-history-variable)))
1134 (query-replace-read-to
1136 (if isearch-regexp "Query replace regexp" "Query replace")
1138 t isearch-regexp isearch-word nil nil
1139 (if (and transient-mark-mode mark-active) (region-beginning))
1140 (if (and transient-mark-mode mark-active) (region-end)))))
1142 (defun isearch-query-replace-regexp ()
1143 "Start query-replace-regexp with string to replace from last search string."
1145 (isearch-query-replace t))
1148 (defun isearch-delete-char ()
1149 "Discard last input item and move point back.
1150 If no previous match was done, just beep."
1152 (if (null (cdr isearch-cmds))
1154 (isearch-pop-state))
1157 (defun isearch-del-char (&optional arg)
1158 "Delete character from end of search string and search again.
1159 If search string is empty, just beep."
1161 (if (= 0 (length isearch-string))
1163 (setq isearch-string (substring isearch-string 0 (- (or arg 1)))
1164 isearch-message (mapconcat 'isearch-text-char-description
1166 ;; Don't move cursor in reverse search.
1167 isearch-yank-flag t))
1168 (isearch-search-and-update))
1170 (defun isearch-yank-string (string)
1171 "Pull STRING into search string."
1172 ;; Downcase the string if not supposed to case-fold yanked strings.
1173 (if (and isearch-case-fold-search
1174 (eq 'not-yanks search-upper-case))
1175 (setq string (downcase string)))
1176 (if isearch-regexp (setq string (regexp-quote string)))
1177 (setq isearch-string (concat isearch-string string)
1179 (concat isearch-message
1180 (mapconcat 'isearch-text-char-description
1182 ;; Don't move cursor in reverse search.
1183 isearch-yank-flag t)
1184 (isearch-search-and-update))
1186 (defun isearch-yank-kill ()
1187 "Pull string from kill ring into search string."
1189 (isearch-yank-string (current-kill 0)))
1191 (defun isearch-yank-x-selection ()
1192 "Pull current X selection into search string."
1194 (isearch-yank-string (x-get-selection)))
1197 (defun isearch-mouse-2 (click)
1198 "Handle mouse-2 in Isearch mode.
1199 For a click in the echo area, invoke `isearch-yank-x-selection'.
1200 Otherwise invoke whatever mouse-2 is bound to outside of Isearch."
1202 (let* ((w (posn-window (event-start click)))
1203 (overriding-terminal-local-map nil)
1204 (key (vector (event-basic-type click)))
1205 ;; FIXME: `key-binding' should accept an event as argument
1206 ;; and do all the overlay/text-properties lookup etc...
1207 (binding (with-current-buffer
1208 (if (window-live-p w) (window-buffer w) (current-buffer))
1209 (key-binding key))))
1210 (if (and (window-minibuffer-p w)
1211 (not (minibuffer-window-active-p w))) ; in echo area
1212 (isearch-yank-x-selection)
1213 (when (functionp binding)
1214 (call-interactively binding)))))
1217 (defun isearch-yank-internal (jumpform)
1218 "Pull the text from point to the point reached by JUMPFORM.
1219 JUMPFORM is a lambda expression that takes no arguments and returns a
1220 buffer position, possibly having moved point to that position. For
1221 example, it might move point forward by a word and return point, or it
1222 might return the position of the end of the line."
1223 (isearch-yank-string
1225 (and (not isearch-forward) isearch-other-end
1226 (goto-char isearch-other-end))
1227 (buffer-substring-no-properties (point) (funcall jumpform)))))
1229 (defun isearch-yank-char-in-minibuffer (&optional arg)
1230 "Pull next character from buffer into end of search string in minibuffer."
1235 (set-buffer (cadr (buffer-list)))
1236 (buffer-substring-no-properties
1237 (point) (progn (forward-char arg) (point)))))
1238 (forward-char arg)))
1240 (defun isearch-yank-char (&optional arg)
1241 "Pull next character from buffer into search string."
1243 (isearch-yank-internal (lambda () (forward-char arg) (point))))
1245 (defun isearch-yank-word-or-char ()
1246 "Pull next character or word from buffer into search string."
1248 (isearch-yank-internal
1250 (if (or (= (char-syntax (or (char-after) 0)) ?w)
1251 (= (char-syntax (or (char-after (1+ (point))) 0)) ?w))
1253 (forward-char 1)) (point))))
1255 (defun isearch-yank-word ()
1256 "Pull next word from buffer into search string."
1258 (isearch-yank-internal (lambda () (forward-word 1) (point))))
1260 (defun isearch-yank-line ()
1261 "Pull rest of line from buffer into search string."
1263 (isearch-yank-internal
1264 (lambda () (line-end-position (if (eolp) 2 1)))))
1266 (defun isearch-search-and-update ()
1267 ;; Do the search and update the display.
1268 (when (or isearch-success
1269 ;; Unsuccessful regexp search may become successful by
1270 ;; addition of characters which make isearch-string valid
1272 ;; If the string was found but was completely invisible,
1273 ;; it might now be partly visible, so try again.
1274 (prog1 isearch-hidden (setq isearch-hidden nil)))
1275 ;; In reverse search, adding stuff at
1276 ;; the end may cause zero or many more chars to be
1277 ;; matched, in the string following point.
1278 ;; Allow all those possibilities without moving point as
1279 ;; long as the match does not extend past search origin.
1280 (if (and (not isearch-forward) (not isearch-adjusted)
1282 (let ((case-fold-search isearch-case-fold-search))
1283 (if (and (eq case-fold-search t) search-upper-case)
1284 (setq case-fold-search
1285 (isearch-no-upper-case-p isearch-string isearch-regexp)))
1286 (looking-at (if isearch-regexp isearch-string
1287 (regexp-quote isearch-string))))
1289 (or isearch-yank-flag
1291 (min isearch-opoint isearch-barrier))))
1293 (setq isearch-success t
1294 isearch-invalid-regexp nil
1295 isearch-within-brackets nil
1296 isearch-other-end (match-end 0))
1297 (if (and (eq isearch-case-fold-search t) search-upper-case)
1298 (setq isearch-case-fold-search
1299 (isearch-no-upper-case-p isearch-string isearch-regexp))))
1300 ;; Not regexp, not reverse, or no match at point.
1301 (if (and isearch-other-end (not isearch-adjusted))
1302 (goto-char (if isearch-forward isearch-other-end
1305 (1+ isearch-other-end)))))
1308 (isearch-push-state)
1309 (if isearch-op-fun (funcall isearch-op-fun))
1313 ;; *, ?, }, and | chars can make a regexp more liberal.
1314 ;; They can make a regexp match sooner or make it succeed instead of failing.
1315 ;; So go back to place last successful search started
1316 ;; or to the last ^S/^R (barrier), whichever is nearer.
1317 ;; + needs no special handling because the string must match at least once.
1319 (defun isearch-backslash (str)
1320 "Return t if STR ends in an odd number of backslashes."
1321 (= (mod (- (length str) (string-match "\\\\*\\'" str)) 2) 1))
1323 (defun isearch-fallback (want-backslash &optional allow-invalid to-barrier)
1324 "Return point to previous successful match to allow regexp liberalization.
1325 \\<isearch-mode-map>
1326 Respects \\[isearch-repeat-forward] and \\[isearch-repeat-backward] by
1327 stopping at `isearch-barrier' as needed.
1329 Do nothing if a backslash is escaping the liberalizing character. If
1330 WANT-BACKSLASH is non-nil, invert this behavior (for \\} and \\|).
1332 Do nothing if regexp has recently been invalid unless optional ALLOW-INVALID
1335 If optional TO-BARRIER non-nil, ignore previous matches and go exactly to the
1337 ;; (eq (not a) (not b)) makes all non-nil values equivalent
1338 (when (and isearch-regexp (eq (not (isearch-backslash isearch-string))
1339 (not want-backslash))
1340 ;; We have to check 2 stack frames because the last might be
1341 ;; invalid just because of a backslash.
1342 (or (not isearch-invalid-regexp)
1343 (not (isearch-invalid-regexp-state (cadr isearch-cmds)))
1346 (progn (goto-char isearch-barrier)
1347 (setq isearch-adjusted t))
1348 (let* ((stack isearch-cmds)
1349 (previous (cdr stack)) ; lookbelow in the stack
1350 (frame (car stack)))
1351 ;; Walk down the stack looking for a valid regexp (as of course only
1352 ;; they can be the previous successful match); this conveniently
1353 ;; removes all bracket-sets and groups that might be in the way, as
1354 ;; well as partial \{\} constructs that the code below leaves behind.
1355 ;; Also skip over postfix operators -- though horrid,
1356 ;; 'ab?\{5,6\}+\{1,2\}*' is perfectly legal.
1357 (while (and previous
1358 (or (isearch-invalid-regexp-state frame)
1359 (let* ((string (isearch-string-state frame))
1360 (lchar (aref string (1- (length string)))))
1361 ;; The operators aren't always operators; check
1362 ;; backslashes. This doesn't handle the case of
1363 ;; operators at the beginning of the regexp not
1364 ;; being special, but then we should fall back to
1365 ;; the barrier anyway because it's all optional.
1366 (if (isearch-backslash
1367 (isearch-string-state (car previous)))
1369 (memq lchar '(?* ?? ?+))))))
1370 (setq stack previous previous (cdr previous) frame (car stack)))
1372 ;; `stack' now refers the most recent valid regexp that is not at
1373 ;; all optional in its last term. Now dig one level deeper and find
1374 ;; what matched before that.
1375 (let ((last-other-end (or (isearch-other-end-state (car previous))
1377 (goto-char (if isearch-forward
1378 (max last-other-end isearch-barrier)
1379 (min last-other-end isearch-barrier)))
1380 (setq isearch-adjusted t))))))
1381 (isearch-process-search-char last-command-char))
1383 ;; * and ? are special when not preceded by \.
1384 (defun isearch-*-char ()
1385 "Maybe back up to handle * and ? specially in regexps."
1387 (isearch-fallback nil))
1389 ;; } is special when it is preceded by \.
1390 (defun isearch-}-char ()
1391 "Handle \\} specially in regexps."
1393 (isearch-fallback t t))
1395 ;; | is special when it is preceded by \.
1396 (defun isearch-|-char ()
1397 "If in regexp search, jump to the barrier unless in a group."
1399 (isearch-fallback t nil t))
1401 (defun isearch-unread-key-sequence (keylist)
1402 "Unread the given key-sequence KEYLIST.
1403 Scroll-bar or mode-line events are processed appropriately."
1404 (cancel-kbd-macro-events)
1405 (apply 'isearch-unread keylist)
1406 ;; If the event was a scroll-bar or mode-line click, the event will have
1407 ;; been prefixed by a symbol such as vertical-scroll-bar. We must remove
1408 ;; it here, because this symbol will be attached to the event again next
1409 ;; time it gets read by read-key-sequence.
1411 ;; (Old comment from isearch-other-meta-char: "Note that we don't have to
1412 ;; modify the event anymore in 21 because read_key_sequence no longer
1413 ;; modifies events to produce fake prefix keys.")
1414 (if (and (> (length keylist) 1)
1415 (symbolp (car keylist))
1416 (listp (cadr keylist))
1417 (not (numberp (posn-point
1418 (event-start (cadr keylist) )))))
1419 (pop unread-command-events)))
1421 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1422 ;; scrolling within Isearch mode. Alan Mackenzie (acm@muc.de), 2003/2/24
1424 ;; The idea here is that certain vertical scrolling commands (like C-l
1425 ;; `recenter') should be usable WITHIN Isearch mode. For a command to be
1426 ;; suitable, it must NOT alter the buffer, swap to another buffer or frame,
1427 ;; tamper with isearch's state, or move point. It is unacceptable for the
1428 ;; search string to be scrolled out of the current window. If a command
1429 ;; attempts this, we scroll the text back again.
1431 ;; We implement this feature with a property called `isearch-scroll'.
1432 ;; If a command's symbol has the value t for this property it is a
1433 ;; scrolling command. The feature needs to be enabled by setting the
1434 ;; customizable variable `isearch-allow-scroll' to a non-nil value.
1436 ;; The universal argument commands (e.g. C-u) in simple.el are marked
1437 ;; as scrolling commands, and isearch.el has been amended to allow
1438 ;; prefix arguments to be passed through to scrolling commands. Thus
1439 ;; M-0 C-l will scroll point to the top of the window.
1441 ;; Horizontal scrolling commands are currently not catered for.
1442 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1444 ;; Set the isearch-scroll property on some standard functions:
1445 ;; Scroll-bar functions:
1446 (if (fboundp 'scroll-bar-toolkit-scroll)
1447 (put 'scroll-bar-toolkit-scroll 'isearch-scroll t))
1448 (if (fboundp 'mac-handle-scroll-bar-event)
1449 (put 'mac-handle-scroll-bar-event 'isearch-scroll t))
1450 (if (fboundp 'w32-handle-scroll-bar-event)
1451 (put 'w32-handle-scroll-bar-event 'isearch-scroll t))
1453 ;; Commands which scroll the window:
1454 (put 'recenter 'isearch-scroll t)
1455 (put 'reposition-window 'isearch-scroll t)
1456 (put 'scroll-up 'isearch-scroll t)
1457 (put 'scroll-down 'isearch-scroll t)
1459 ;; Commands which act on the other window
1460 (put 'list-buffers 'isearch-scroll t)
1461 (put 'scroll-other-window 'isearch-scroll t)
1462 (put 'scroll-other-window-down 'isearch-scroll t)
1463 (put 'beginning-of-buffer-other-window 'isearch-scroll t)
1464 (put 'end-of-buffer-other-window 'isearch-scroll t)
1466 ;; Commands which change the window layout
1467 (put 'delete-other-windows 'isearch-scroll t)
1468 (put 'balance-windows 'isearch-scroll t)
1469 (put 'split-window-vertically 'isearch-scroll t)
1470 (put 'enlarge-window 'isearch-scroll t)
1472 ;; Universal argument commands
1473 (put 'universal-argument 'isearch-scroll t)
1474 (put 'negative-argument 'isearch-scroll t)
1475 (put 'digit-argument 'isearch-scroll t)
1477 (defcustom isearch-allow-scroll nil
1478 "If non-nil, scrolling commands are allowed during incremental search."
1482 (defun isearch-string-out-of-window (isearch-point)
1483 "Test whether the search string is currently outside of the window.
1484 Return nil if it's completely visible, or if point is visible,
1485 together with as much of the search string as will fit; the symbol
1486 `above' if we need to scroll the text downwards; the symbol `below',
1488 (let ((w-start (window-start))
1489 (w-end (window-end nil t))
1490 (w-L1 (save-excursion (move-to-window-line 1) (point)))
1491 (w-L-1 (save-excursion (move-to-window-line -1) (point)))
1492 start end) ; start and end of search string in buffer
1494 (setq end isearch-point start (or isearch-other-end isearch-point))
1495 (setq start isearch-point end (or isearch-other-end isearch-point)))
1496 (cond ((or (and (>= start w-start) (<= end w-end))
1498 (and (>= isearch-point w-L-1) (< isearch-point w-end)) ; point on Line -1
1499 (and (>= isearch-point w-start) (< isearch-point w-L1)))) ; point on Line 0
1501 ((and (< start w-start)
1502 (< isearch-point w-L-1))
1506 (defun isearch-back-into-window (above isearch-point)
1507 "Scroll the window to bring the search string back into view.
1508 Restore point to ISEARCH-POINT in the process. ABOVE is t when the
1509 search string is above the top of the window, nil when it is beneath
1513 (setq end isearch-point start (or isearch-other-end isearch-point))
1514 (setq start isearch-point end (or isearch-other-end isearch-point)))
1519 (when (>= isearch-point (window-end nil t))
1520 (goto-char isearch-point)
1524 (when (< isearch-point (window-start))
1525 (goto-char isearch-point)
1527 (goto-char isearch-point))
1529 (defun isearch-reread-key-sequence-naturally (keylist)
1530 "Reread key sequence KEYLIST with Isearch mode's keymap deactivated.
1531 Return the key sequence as a string/vector."
1532 (isearch-unread-key-sequence keylist)
1533 (let (overriding-terminal-local-map)
1534 (read-key-sequence nil))) ; This will go through function-key-map, if nec.
1536 (defun isearch-lookup-scroll-key (key-seq)
1537 "If KEY-SEQ is bound to a scrolling command, return it as a symbol.
1538 Otherwise return nil."
1539 (let* ((overriding-terminal-local-map nil)
1540 (binding (key-binding key-seq)))
1541 (and binding (symbolp binding) (commandp binding)
1542 (eq (get binding 'isearch-scroll) t)
1545 (defalias 'isearch-other-control-char 'isearch-other-meta-char)
1547 (defun isearch-other-meta-char (&optional arg)
1548 "Process a miscellaneous key sequence in Isearch mode.
1550 Try to convert the current key-sequence to something usable in Isearch
1551 mode, either by converting it with `function-key-map', downcasing a
1552 key with C-<upper case>, or finding a \"scrolling command\" bound to
1553 it. \(In the last case, we may have to read more events.) If so,
1554 either unread the converted sequence or execute the command.
1556 Otherwise, if `search-exit-option' is non-nil (the default) unread the
1557 key-sequence and exit the search normally. If it is the symbol
1558 `edit', the search string is edited in the minibuffer and the meta
1559 character is unread so that it applies to editing the string.
1561 ARG is the prefix argument. It will be transmitted through to the
1562 scrolling command or to the command whose key-sequence exits
1565 (let* ((key (if current-prefix-arg ; not nec the same as ARG
1566 (substring (this-command-keys) universal-argument-num-events)
1567 (this-command-keys)))
1568 (main-event (aref key 0))
1569 (keylist (listify-key-sequence key))
1570 scroll-command isearch-point)
1571 (cond ((and (= (length key) 1)
1572 (let ((lookup (lookup-key function-key-map key)))
1573 (not (or (null lookup) (integerp lookup)
1574 (keymapp lookup)))))
1575 ;; Handle a function key that translates into something else.
1576 ;; If the key has a global definition too,
1577 ;; exit and unread the key itself, so its global definition runs.
1578 ;; Otherwise, unread the translation,
1579 ;; so that the translated key takes effect within isearch.
1580 (cancel-kbd-macro-events)
1581 (if (lookup-key global-map key)
1584 (apply 'isearch-unread keylist))
1586 (listify-key-sequence (lookup-key function-key-map key)))
1588 (setq key (car keylist))
1589 ;; If KEY is a printing char, we handle it here
1590 ;; directly to avoid the input method and keyboard
1591 ;; coding system translating it.
1592 (if (and (integerp key)
1593 (>= key ?\ ) (/= key 127) (< key 256))
1595 (isearch-process-search-char key)
1596 (setq keylist (cdr keylist)))
1597 ;; As the remaining keys in KEYLIST can't be handled
1598 ;; here, we must reread them.
1599 (apply 'isearch-unread keylist)
1600 (setq keylist nil)))))
1602 ;; Handle an undefined shifted control character
1603 ;; by downshifting it if that makes it defined.
1604 ;; (As read-key-sequence would normally do,
1605 ;; if we didn't have a default definition.)
1606 (let ((mods (event-modifiers main-event)))
1607 (and (integerp main-event)
1609 (memq 'control mods)
1610 (lookup-key isearch-mode-map
1611 (let ((copy (copy-sequence key)))
1613 (- main-event (- ?\C-\S-a ?\C-a)))
1616 (setcar keylist (- main-event (- ?\C-\S-a ?\C-a)))
1617 (cancel-kbd-macro-events)
1618 (apply 'isearch-unread keylist))
1619 ((eq search-exit-option 'edit)
1620 (apply 'isearch-unread keylist)
1621 (isearch-edit-string))
1622 ;; Handle a scrolling function.
1623 ((and isearch-allow-scroll
1624 (progn (setq key (isearch-reread-key-sequence-naturally keylist))
1625 (setq keylist (listify-key-sequence key))
1626 (setq main-event (aref key 0))
1627 (setq scroll-command (isearch-lookup-scroll-key key))))
1628 ;; From this point onwards, KEY, KEYLIST and MAIN-EVENT hold a
1629 ;; complete key sequence, possibly as modified by function-key-map,
1630 ;; not merely the one or two event fragment which invoked
1631 ;; isearch-other-meta-char in the first place.
1632 (setq isearch-point (point))
1633 (setq prefix-arg arg)
1634 (command-execute scroll-command)
1635 (let ((ab-bel (isearch-string-out-of-window isearch-point)))
1637 (isearch-back-into-window (eq ab-bel 'above) isearch-point)
1638 (goto-char isearch-point)))
1642 (isearch-unread-key-sequence keylist)
1643 (setq main-event (car unread-command-events))
1645 ;; If we got a mouse click event, that event contains the
1646 ;; window clicked on. maybe it was read with the buffer
1647 ;; it was clicked on. If so, that buffer, not the current one,
1648 ;; is in isearch mode. So end the search in that buffer.
1650 ;; ??? I have no idea what this if checks for, but it's
1651 ;; obviously wrong for the case that a down-mouse event
1652 ;; on another window invokes this function. The event
1653 ;; will contain the window clicked on and that window's
1654 ;; buffer is certainly not always in Isearch mode.
1656 ;; Leave the code in, but check for current buffer not
1657 ;; being in Isearch mode for now, until someone tells
1658 ;; what it's really supposed to do.
1660 ;; --gerd 2001-08-10.
1662 (if (and (not isearch-mode)
1664 (setq window (posn-window (event-start main-event)))
1666 (or (> (minibuffer-depth) 0)
1667 (not (window-minibuffer-p window))))
1669 (set-buffer (window-buffer window))
1671 (isearch-clean-overlays))
1673 (isearch-clean-overlays)
1674 (setq prefix-arg arg))))
1676 (isearch-process-search-string key key)))))
1678 (defun isearch-quote-char ()
1679 "Quote special characters for incremental search."
1681 (let ((char (read-quoted-char (isearch-message t))))
1682 ;; Assume character codes 0200 - 0377 stand for characters in some
1683 ;; single-byte character set, and convert them to Emacs
1685 (if (and isearch-regexp (= char ?\ ))
1686 (if (subregexp-context-p isearch-string (length isearch-string))
1687 (isearch-process-search-string "[ ]" " ")
1688 (isearch-process-search-char char))
1689 (and enable-multibyte-characters
1692 (setq char (unibyte-char-to-multibyte char)))
1693 (isearch-process-search-char char))))
1695 (defun isearch-return-char ()
1696 "Convert return into newline for incremental search.
1699 (isearch-process-search-char ?\n))
1701 (defun isearch-printing-char ()
1702 "Add this ordinary printing character to the search string and search."
1704 (let ((char last-command-char))
1707 (if (and enable-multibyte-characters
1710 (if (keyboard-coding-system)
1711 (isearch-process-search-multibyte-characters char)
1712 (isearch-process-search-char (unibyte-char-to-multibyte char)))
1713 (if current-input-method
1714 (isearch-process-search-multibyte-characters char)
1715 (isearch-process-search-char char)))))
1717 (defun isearch-process-search-char (char)
1718 ;; Append the char to the search string, update the message and re-search.
1719 (isearch-process-search-string
1720 (char-to-string char)
1722 (char-to-string char)
1723 (isearch-text-char-description char))))
1725 (defun isearch-process-search-string (string message)
1726 (setq isearch-string (concat isearch-string string)
1727 isearch-message (concat isearch-message message))
1728 (isearch-search-and-update))
1733 (defun isearch-ring-adjust1 (advance)
1734 ;; Helper for isearch-ring-adjust
1735 (let* ((ring (if isearch-regexp regexp-search-ring search-ring))
1736 (length (length ring))
1737 (yank-pointer-name (if isearch-regexp
1738 'regexp-search-ring-yank-pointer
1739 'search-ring-yank-pointer))
1740 (yank-pointer (eval yank-pointer-name)))
1743 (set yank-pointer-name
1745 (mod (+ (or yank-pointer 0)
1748 (setq isearch-string (nth yank-pointer ring)
1749 isearch-message (mapconcat 'isearch-text-char-description
1750 isearch-string "")))))
1752 (defun isearch-ring-adjust (advance)
1753 ;; Helper for isearch-ring-advance and isearch-ring-retreat
1754 (isearch-ring-adjust1 advance)
1755 (if search-ring-update
1759 (isearch-edit-string)
1761 (isearch-push-state))
1763 (defun isearch-ring-advance ()
1764 "Advance to the next search string in the ring."
1765 ;; This could be more general to handle a prefix arg, but who would use it.
1767 (isearch-ring-adjust 'advance))
1769 (defun isearch-ring-retreat ()
1770 "Retreat to the previous search string in the ring."
1772 (isearch-ring-adjust nil))
1774 (defun isearch-ring-advance-edit (n)
1775 "Insert the next element of the search history into the minibuffer.
1776 With prefix arg N, insert the Nth element."
1778 (let* ((yank-pointer-name (if isearch-regexp
1779 'regexp-search-ring-yank-pointer
1780 'search-ring-yank-pointer))
1781 (yank-pointer (eval yank-pointer-name))
1782 (ring (if isearch-regexp regexp-search-ring search-ring))
1783 (length (length ring)))
1786 (set yank-pointer-name
1788 (mod (- (or yank-pointer 0) n)
1792 (insert (nth yank-pointer ring))
1793 (goto-char (point-max)))))
1795 (defun isearch-ring-retreat-edit (n)
1796 "Insert the previous element of the search history into the minibuffer.
1797 With prefix arg N, insert the Nth element."
1799 (isearch-ring-advance-edit (- n)))
1801 ;;(defun isearch-ring-adjust-edit (advance)
1802 ;; "Use the next or previous search string in the ring while in minibuffer."
1803 ;; (isearch-ring-adjust1 advance)
1805 ;; (insert isearch-string))
1807 ;;(defun isearch-ring-advance-edit ()
1809 ;; (isearch-ring-adjust-edit 'advance))
1811 ;;(defun isearch-ring-retreat-edit ()
1812 ;; "Retreat to the previous search string in the ring while in the minibuffer."
1814 ;; (isearch-ring-adjust-edit nil))
1817 (defun isearch-complete1 ()
1818 ;; Helper for isearch-complete and isearch-complete-edit
1819 ;; Return t if completion OK, nil if no completion exists.
1820 (let* ((ring (if isearch-regexp regexp-search-ring search-ring))
1821 (completion-ignore-case case-fold-search)
1822 (completion (try-completion isearch-string ring)))
1825 ;; isearch-string stays the same
1827 ((or completion ; not nil, must be a string
1828 (= 0 (length isearch-string))) ; shouldn't have to say this
1829 (if (equal completion isearch-string) ;; no extension?
1831 (if completion-auto-help
1832 (with-output-to-temp-buffer "*Isearch completions*"
1833 (display-completion-list
1834 (all-completions isearch-string ring))))
1837 (setq isearch-string completion))))
1839 (message "No completion") ; waits a second if in minibuffer
1842 (defun isearch-complete ()
1843 "Complete the search string from the strings on the search ring.
1844 The completed string is then editable in the minibuffer.
1845 If there is no completion possible, say so and continue searching."
1847 (if (isearch-complete1)
1848 (progn (setq isearch-message
1849 (mapconcat 'isearch-text-char-description
1851 (isearch-edit-string))
1856 (defun isearch-complete-edit ()
1857 "Same as `isearch-complete' except in the minibuffer."
1859 (setq isearch-string (field-string))
1860 (if (isearch-complete1)
1863 (insert isearch-string))))
1868 (defun isearch-message (&optional c-q-hack ellipsis)
1869 ;; Generate and print the message string.
1870 (let ((cursor-in-echo-area ellipsis)
1872 (isearch-message-prefix c-q-hack ellipsis isearch-nonincremental)
1873 (if (and (not isearch-success)
1874 (string-match " +$" isearch-message))
1876 (substring isearch-message 0 (match-beginning 0))
1877 (propertize (substring isearch-message (match-beginning 0))
1878 'face 'trailing-whitespace))
1880 (isearch-message-suffix c-q-hack ellipsis)
1884 (let ((message-log-max nil))
1885 (message "%s" m)))))
1887 (defun isearch-message-prefix (&optional c-q-hack ellipsis nonincremental)
1888 ;; If about to search, and previous search regexp was invalid,
1889 ;; check that it still is. If it is valid now,
1890 ;; let the message we display while searching say that it is valid.
1891 (and isearch-invalid-regexp ellipsis
1893 (progn (re-search-forward isearch-string (point) t)
1894 (setq isearch-invalid-regexp nil
1895 isearch-within-brackets nil))
1897 ;; If currently failing, display no ellipsis.
1898 (or isearch-success (setq ellipsis nil))
1899 (let ((m (concat (if isearch-success "" "failing ")
1900 (if isearch-adjusted "pending " "")
1901 (if (and isearch-wrapped
1902 (not isearch-wrap-function)
1904 (> (point) isearch-opoint)
1905 (< (point) isearch-opoint)))
1907 (if isearch-wrapped "wrapped ")
1908 (if isearch-word "word " "")
1909 (if isearch-regexp "regexp " "")
1910 (if nonincremental "search" "I-search")
1911 (if isearch-forward "" " backward")
1912 (if current-input-method
1913 (concat " [" current-input-method-title "]: ")
1916 (propertize (concat (upcase (substring m 0 1)) (substring m 1))
1917 'face 'minibuffer-prompt)))
1919 (defun isearch-message-suffix (&optional c-q-hack ellipsis)
1920 (concat (if c-q-hack "^Q" "")
1921 (if isearch-invalid-regexp
1922 (concat " [" isearch-invalid-regexp "]")
1928 (defvar isearch-search-fun-function nil
1929 "Override `isearch-search-fun'.
1930 This function should return the search function for isearch to use.
1931 It will call this function with three arguments
1932 as if it were `search-forward'.")
1934 (defun isearch-search-fun ()
1935 "Return the function to use for the search.
1936 Can be changed via `isearch-search-fun-function' for special needs."
1937 (if isearch-search-fun-function
1938 (funcall isearch-search-fun-function)
1941 (if isearch-forward 'word-search-forward 'word-search-backward))
1943 (if isearch-forward 're-search-forward 're-search-backward))
1945 (if isearch-forward 'search-forward 'search-backward)))))
1947 (defun isearch-search ()
1948 ;; Do the search with the current search string.
1949 (isearch-message nil t)
1950 (if (and (eq isearch-case-fold-search t) search-upper-case)
1951 (setq isearch-case-fold-search
1952 (isearch-no-upper-case-p isearch-string isearch-regexp)))
1953 (condition-case lossage
1954 (let ((inhibit-point-motion-hooks search-invisible)
1956 (case-fold-search isearch-case-fold-search)
1957 (search-spaces-regexp search-whitespace-regexp)
1959 (if isearch-regexp (setq isearch-invalid-regexp nil))
1960 (setq isearch-within-brackets nil)
1962 (setq isearch-success
1964 (isearch-search-fun)
1965 isearch-string nil t))
1966 ;; Clear RETRY unless we matched some invisible text
1967 ;; and we aren't supposed to do that.
1968 (if (or (eq search-invisible t)
1969 (not isearch-success)
1971 (= (match-beginning 0) (match-end 0))
1972 (not (isearch-range-invisible
1973 (match-beginning 0) (match-end 0))))
1975 (setq isearch-just-started nil)
1977 (setq isearch-other-end
1978 (if isearch-forward (match-beginning 0) (match-end 0)))))
1980 (quit (isearch-unread ?\C-g)
1981 (setq isearch-success nil))
1984 (setq isearch-invalid-regexp (car (cdr lossage)))
1985 (setq isearch-within-brackets (string-match "\\`Unmatched \\["
1986 isearch-invalid-regexp))
1988 "\\`Premature \\|\\`Unmatched \\|\\`Invalid "
1989 isearch-invalid-regexp)
1990 (setq isearch-invalid-regexp "incomplete input")))
1992 ;; stack overflow in regexp search.
1993 (setq isearch-invalid-regexp (format "%s" lossage))))
1997 ;; Ding if failed this time after succeeding last time.
1998 (and (isearch-success-state (car isearch-cmds))
2000 (if (functionp (isearch-pop-fun-state (car isearch-cmds)))
2001 (funcall (isearch-pop-fun-state (car isearch-cmds)) (car isearch-cmds)))
2002 (goto-char (isearch-point-state (car isearch-cmds)))))
2005 ;; Called when opening an overlay, and we are still in isearch.
2006 (defun isearch-open-overlay-temporary (ov)
2007 (if (not (null (overlay-get ov 'isearch-open-invisible-temporary)))
2008 ;; Some modes would want to open the overlays temporary during
2009 ;; isearch in their own way, they should set the
2010 ;; `isearch-open-invisible-temporary' to a function doing this.
2011 (funcall (overlay-get ov 'isearch-open-invisible-temporary) ov nil)
2012 ;; Store the values for the `invisible' and `intangible'
2013 ;; properties, and then set them to nil. This way the text hidden
2014 ;; by this overlay becomes visible.
2016 ;; Do we really need to set the `intangible' property to t? Can we
2017 ;; have the point inside an overlay with an `intangible' property?
2018 ;; In 19.34 this does not exist so I cannot test it.
2019 (overlay-put ov 'isearch-invisible (overlay-get ov 'invisible))
2020 (overlay-put ov 'isearch-intangible (overlay-get ov 'intangible))
2021 (overlay-put ov 'invisible nil)
2022 (overlay-put ov 'intangible nil)))
2025 ;; This is called at the end of isearch. It will open the overlays
2026 ;; that contain the latest match. Obviously in case of a C-g the
2027 ;; point returns to the original location which surely is not contain
2028 ;; in any of these overlays, se we are safe in this case too.
2029 (defun isearch-open-necessary-overlays (ov)
2030 (let ((inside-overlay (and (> (point) (overlay-start ov))
2031 (< (point) (overlay-end ov))))
2032 ;; If this exists it means that the overlay was opened using
2033 ;; this function, not by us tweaking the overlay properties.
2034 (fct-temp (overlay-get ov 'isearch-open-invisible-temporary)))
2035 (when (or inside-overlay (not fct-temp))
2036 ;; restore the values for the `invisible' and `intangible'
2038 (overlay-put ov 'invisible (overlay-get ov 'isearch-invisible))
2039 (overlay-put ov 'intangible (overlay-get ov 'isearch-intangible))
2040 (overlay-put ov 'isearch-invisible nil)
2041 (overlay-put ov 'isearch-intangible nil))
2043 (funcall (overlay-get ov 'isearch-open-invisible) ov)
2045 (funcall fct-temp ov t)))))
2047 ;; This is called when exiting isearch. It closes the temporary
2048 ;; opened overlays, except the ones that contain the latest match.
2049 (defun isearch-clean-overlays ()
2050 (when isearch-opened-overlays
2051 (mapc 'isearch-open-necessary-overlays isearch-opened-overlays)
2052 (setq isearch-opened-overlays nil)))
2055 (defun isearch-intersects-p (start0 end0 start1 end1)
2056 "Return t if regions START0..END0 and START1..END1 intersect."
2057 (or (and (>= start0 start1) (< start0 end1))
2058 (and (> end0 start1) (<= end0 end1))
2059 (and (>= start1 start0) (< start1 end0))
2060 (and (> end1 start0) (<= end1 end0))))
2063 ;; Verify if the current match is outside of each element of
2064 ;; `isearch-opened-overlays', if so close that overlay.
2066 (defun isearch-close-unnecessary-overlays (begin end)
2067 (let ((overlays isearch-opened-overlays))
2068 (setq isearch-opened-overlays nil)
2069 (dolist (ov overlays)
2070 (if (isearch-intersects-p begin end (overlay-start ov) (overlay-end ov))
2071 (push ov isearch-opened-overlays)
2072 (let ((fct-temp (overlay-get ov 'isearch-open-invisible-temporary)))
2074 ;; If this exists it means that the overlay was opened
2075 ;; using this function, not by us tweaking the overlay
2077 (funcall fct-temp ov t)
2078 (overlay-put ov 'invisible (overlay-get ov 'isearch-invisible))
2079 (overlay-put ov 'intangible (overlay-get ov 'isearch-intangible))
2080 (overlay-put ov 'isearch-invisible nil)
2081 (overlay-put ov 'isearch-intangible nil)))))))
2084 (defun isearch-range-invisible (beg end)
2085 "Return t if all the text from BEG to END is invisible."
2087 ;; Check that invisibility runs up to END.
2090 (let (;; can-be-opened keeps track if we can open some overlays.
2091 (can-be-opened (eq search-invisible 'open))
2092 ;; the list of overlays that could be opened
2094 (when (and can-be-opened isearch-hide-immediately)
2095 (isearch-close-unnecessary-overlays beg end))
2096 ;; If the following character is currently invisible,
2097 ;; skip all characters with that same `invisible' property value.
2098 ;; Do that over and over.
2099 (while (and (< (point) end)
2101 (get-char-property (point) 'invisible)))
2102 (if (eq buffer-invisibility-spec t)
2104 (or (memq prop buffer-invisibility-spec)
2105 (assq prop buffer-invisibility-spec)))))
2106 (if (get-text-property (point) 'invisible)
2108 (goto-char (next-single-property-change (point) 'invisible
2110 ;; if text is hidden by an `invisible' text property
2111 ;; we cannot open it at all.
2112 (setq can-be-opened nil))
2114 (let ((overlays (overlays-at (point)))
2119 (setq o (car overlays)
2120 invis-prop (overlay-get o 'invisible))
2121 (if (if (eq buffer-invisibility-spec t)
2123 (or (memq invis-prop buffer-invisibility-spec)
2124 (assq invis-prop buffer-invisibility-spec)))
2125 (if (overlay-get o 'isearch-open-invisible)
2126 (setq ov-list (cons o ov-list))
2127 ;; We found one overlay that cannot be
2128 ;; opened, that means the whole chunk
2129 ;; cannot be opened.
2130 (setq can-be-opened nil)))
2131 (setq overlays (cdr overlays)))
2133 ;; It makes sense to append to the open
2134 ;; overlays list only if we know that this is
2136 (setq crt-overlays (append ov-list crt-overlays)))))
2137 (goto-char (next-overlay-change (point)))))
2138 ;; See if invisibility reaches up thru END.
2139 (if (>= (point) end)
2140 (if (and can-be-opened (consp crt-overlays))
2142 (setq isearch-opened-overlays
2143 (append isearch-opened-overlays crt-overlays))
2144 (mapc 'isearch-open-overlay-temporary crt-overlays)
2146 (setq isearch-hidden t)))))))
2151 (defvar isearch-overlay nil)
2153 (defun isearch-highlight (beg end)
2154 (unless (null search-highlight)
2155 (cond (isearch-overlay
2156 ;; Overlay already exists, just move it.
2157 (move-overlay isearch-overlay beg end (current-buffer)))
2160 ;; Overlay doesn't exist, create it.
2161 (setq isearch-overlay (make-overlay beg end))
2162 (overlay-put isearch-overlay 'face isearch)
2163 (overlay-put isearch-overlay 'priority 1) ;higher than lazy overlays
2166 (defun isearch-dehighlight (totally)
2167 (when isearch-overlay
2168 (delete-overlay isearch-overlay)))
2171 ;; General utilities
2174 (defun isearch-no-upper-case-p (string regexp-flag)
2175 "Return t if there are no upper case chars in STRING.
2176 If REGEXP-FLAG is non-nil, disregard letters preceded by `\\' (but not `\\\\')
2177 since they have special meaning in a regexp."
2178 (let (quote-flag (i 0) (len (length string)) found)
2179 (while (and (not found) (< i len))
2180 (let ((char (aref string i)))
2181 (if (and regexp-flag (eq char ?\\))
2182 (setq quote-flag (not quote-flag))
2183 (if (and (not quote-flag) (not (eq char (downcase char))))
2185 (setq quote-flag nil)))
2189 ;; Portability functions to support various Emacs versions.
2191 (defun isearch-text-char-description (c)
2193 ((< c ?\ ) (format "^%c" (+ c 64)))
2195 (t (char-to-string c))))
2197 ;; General function to unread characters or events.
2198 ;; Also insert them in a keyboard macro being defined.
2199 (defun isearch-unread (&rest char-or-events)
2200 (mapc 'store-kbd-macro-event char-or-events)
2201 (setq unread-command-events
2202 (append char-or-events unread-command-events)))
2205 ;; isearch-lazy-highlight feature
2206 ;; by Bob Glickstein <http://www.zanshin.com/~bobg/>
2208 ;; When active, *every* match for the current search string is
2209 ;; highlighted: the current one using the normal isearch match color
2210 ;; and all the others using `isearch-lazy-highlight-face'. The extra
2211 ;; highlighting makes it easier to anticipate where the cursor will
2212 ;; land each time you press C-s or C-r to repeat a pending search.
2213 ;; Highlighting of these additional matches happens in a deferred
2214 ;; fashion using "idle timers," so the cycles needed do not rob
2215 ;; isearch of its usual snappy response.
2217 ;; IMPLEMENTATION NOTE: This depends on some isearch internals.
2219 ;; - `isearch-update' is expected to be called (at least) every time
2220 ;; the search string or window-start changes;
2221 ;; - `isearch-string' is expected to contain the current search
2222 ;; string as entered by the user;
2223 ;; - the type of the current search is expected to be given by
2224 ;; `isearch-word' and `isearch-regexp';
2225 ;; - the direction of the current search is expected to be given by
2226 ;; `isearch-forward';
2227 ;; - the variable `isearch-invalid-regexp' is expected to be true
2228 ;; iff `isearch-string' is an invalid regexp.
2230 (defgroup isearch-lazy-highlight nil
2231 "Lazy highlighting feature for incremental search."
2232 :prefix "isearch-lazy-highlight-"
2236 (defcustom isearch-lazy-highlight t
2237 "*Controls the lazy-highlighting during incremental searches.
2238 When non-nil, all text in the buffer matching the current search
2239 string is highlighted lazily (see `isearch-lazy-highlight-initial-delay'
2240 and `isearch-lazy-highlight-interval')."
2242 :group 'isearch-lazy-highlight)
2244 (defcustom isearch-lazy-highlight-cleanup t
2245 "*Controls whether to remove extra highlighting after a search.
2246 If this is nil, extra highlighting can be \"manually\" removed with
2247 \\[isearch-lazy-highlight-cleanup]."
2249 :group 'isearch-lazy-highlight)
2251 (defcustom isearch-lazy-highlight-initial-delay 0.25
2252 "*Seconds to wait before beginning to lazily highlight all matches."
2254 :group 'isearch-lazy-highlight)
2256 (defcustom isearch-lazy-highlight-interval 0 ; 0.0625
2257 "*Seconds between lazily highlighting successive matches."
2259 :group 'isearch-lazy-highlight)
2261 (defcustom isearch-lazy-highlight-max-at-a-time 20
2262 "*Maximum matches to highlight at a time (for `isearch-lazy-highlight').
2263 Larger values may reduce isearch's responsiveness to user input;
2264 smaller values make matches highlight slowly.
2265 A value of nil means highlight all matches."
2266 :type '(choice (const :tag "All" nil)
2267 (integer :tag "Some"))
2268 :group 'isearch-lazy-highlight)
2270 (defgroup isearch-faces nil
2271 "Lazy highlighting feature for incremental search."
2276 '((((class color) (min-colors 88) (background light))
2277 ;; The background must not be too dark, for that means
2278 ;; the character is hard to see when the cursor is there.
2279 (:background "magenta2" :foreground "lightskyblue1"))
2280 (((class color) (min-colors 88) (background dark))
2281 (:background "palevioletred2" :foreground "brown4"))
2282 (((class color) (min-colors 16))
2283 (:background "magenta4" :foreground "cyan1"))
2284 (((class color) (min-colors 8))
2285 (:background "magenta4" :foreground "cyan1"))
2286 (t (:inverse-video t)))
2287 "Face for highlighting Isearch matches."
2288 :group 'isearch-faces)
2289 (defvar isearch 'isearch)
2291 (defface isearch-lazy-highlight-face
2292 '((((class color) (min-colors 88) (background light))
2293 (:background "paleturquoise"))
2294 (((class color) (min-colors 88) (background dark))
2295 (:background "paleturquoise4"))
2296 (((class color) (min-colors 16))
2297 (:background "turquoise3"))
2298 (((class color) (min-colors 8))
2299 (:background "turquoise3"))
2301 "Face for lazy highlighting of Isearch matches other than the current one."
2302 :group 'isearch-faces)
2303 (defvar isearch-lazy-highlight-face 'isearch-lazy-highlight-face)
2305 (defvar isearch-lazy-highlight-overlays nil)
2306 (defvar isearch-lazy-highlight-wrapped nil)
2307 (defvar isearch-lazy-highlight-start nil)
2308 (defvar isearch-lazy-highlight-end nil)
2309 (defvar isearch-lazy-highlight-timer nil)
2310 (defvar isearch-lazy-highlight-last-string nil)
2311 (defvar isearch-lazy-highlight-window nil)
2312 (defvar isearch-lazy-highlight-window-start nil)
2313 (defvar isearch-lazy-highlight-window-end nil)
2314 (defvar isearch-lazy-highlight-case-fold-search nil)
2315 (defvar isearch-lazy-highlight-regexp nil)
2317 (defun isearch-lazy-highlight-cleanup (&optional force)
2318 "Stop lazy highlighting and remove extra highlighting from current buffer.
2319 FORCE non-nil means do it whether or not `isearch-lazy-highlight-cleanup'
2320 is nil. This function is called when exiting an incremental search if
2321 `isearch-lazy-highlight-cleanup' is non-nil."
2323 (if (or force isearch-lazy-highlight-cleanup)
2324 (while isearch-lazy-highlight-overlays
2325 (delete-overlay (car isearch-lazy-highlight-overlays))
2326 (setq isearch-lazy-highlight-overlays
2327 (cdr isearch-lazy-highlight-overlays))))
2328 (when isearch-lazy-highlight-timer
2329 (cancel-timer isearch-lazy-highlight-timer)
2330 (setq isearch-lazy-highlight-timer nil)))
2332 (defun isearch-lazy-highlight-new-loop ()
2333 "Cleanup any previous `isearch-lazy-highlight' loop and begin a new one.
2334 This happens when `isearch-update' is invoked (which can cause the
2335 search string to change or the window to scroll)."
2336 (when (and isearch-lazy-highlight
2337 (null executing-kbd-macro)
2338 (sit-for 0) ;make sure (window-start) is credible
2339 (or (not (equal isearch-string
2340 isearch-lazy-highlight-last-string))
2341 (not (eq (selected-window)
2342 isearch-lazy-highlight-window))
2343 (not (eq isearch-lazy-highlight-case-fold-search
2344 isearch-case-fold-search))
2345 (not (eq isearch-lazy-highlight-regexp
2347 (not (= (window-start)
2348 isearch-lazy-highlight-window-start))
2349 (not (= (window-end) ; Window may have been split/joined.
2350 isearch-lazy-highlight-window-end))))
2351 ;; something important did indeed change
2352 (isearch-lazy-highlight-cleanup t) ;kill old loop & remove overlays
2353 (when (not isearch-invalid-regexp)
2354 (setq isearch-lazy-highlight-window (selected-window)
2355 isearch-lazy-highlight-window-start (window-start)
2356 isearch-lazy-highlight-window-end (window-end)
2357 isearch-lazy-highlight-start (point)
2358 isearch-lazy-highlight-end (point)
2359 isearch-lazy-highlight-last-string isearch-string
2360 isearch-lazy-highlight-case-fold-search isearch-case-fold-search
2361 isearch-lazy-highlight-regexp isearch-regexp
2362 isearch-lazy-highlight-wrapped nil)
2363 (unless (equal isearch-string "")
2364 (setq isearch-lazy-highlight-timer
2365 (run-with-idle-timer isearch-lazy-highlight-initial-delay nil
2366 'isearch-lazy-highlight-update))))))
2368 (defun isearch-lazy-highlight-search ()
2369 "Search ahead for the next or previous match, for lazy highlighting.
2370 Attempt to do the search exactly the way the pending isearch would."
2371 (let ((case-fold-search isearch-case-fold-search)
2372 (search-spaces-regexp search-whitespace-regexp))
2373 (funcall (isearch-search-fun)
2376 (if isearch-lazy-highlight-wrapped
2377 isearch-lazy-highlight-start
2379 (if isearch-lazy-highlight-wrapped
2380 isearch-lazy-highlight-end
2384 (defun isearch-lazy-highlight-update ()
2385 "Update highlighting of other matches for current search."
2386 (let ((max isearch-lazy-highlight-max-at-a-time)
2390 (save-selected-window
2391 (if (and (window-live-p isearch-lazy-highlight-window)
2392 (not (eq (selected-window) isearch-lazy-highlight-window)))
2393 (select-window isearch-lazy-highlight-window))
2396 (goto-char (if isearch-forward
2397 isearch-lazy-highlight-end
2398 isearch-lazy-highlight-start))
2400 (let ((found (isearch-lazy-highlight-search)))
2404 (setq looping nil)))
2406 (let ((mb (match-beginning 0))
2408 (if (= mb me) ;zero-length match
2410 (if (= mb (if isearch-lazy-highlight-wrapped
2411 isearch-lazy-highlight-start
2415 (if (= mb (if isearch-lazy-highlight-wrapped
2416 isearch-lazy-highlight-end
2421 ;; non-zero-length match
2422 (let ((ov (make-overlay mb me)))
2423 (push ov isearch-lazy-highlight-overlays)
2424 (overlay-put ov 'face isearch-lazy-highlight-face)
2425 (overlay-put ov 'priority 0) ;lower than main overlay
2426 (overlay-put ov 'window (selected-window))))
2428 (setq isearch-lazy-highlight-end (point))
2429 (setq isearch-lazy-highlight-start (point)))))
2431 ;; not found or zero-length match at the search bound
2433 (if isearch-lazy-highlight-wrapped
2436 (setq isearch-lazy-highlight-wrapped t)
2439 (setq isearch-lazy-highlight-end (window-start))
2440 (goto-char (window-start)))
2441 (setq isearch-lazy-highlight-start (window-end))
2442 (goto-char (window-end)))))))
2444 (setq isearch-lazy-highlight-timer
2445 (run-at-time isearch-lazy-highlight-interval nil
2446 'isearch-lazy-highlight-update)))))))))
2448 (defun isearch-resume (search regexp word forward message case-fold)
2449 "Resume an incremental search.
2450 SEARCH is the string or regexp searched for.
2451 REGEXP non-nil means the resumed search was a regexp search.
2452 WORD non-nil means resume a word search.
2453 FORWARD non-nil means resume a forward search.
2454 MESSAGE is the echo-area message recorded for the search resumed.
2455 CASE-FOLD non-nil means the search was case-insensitive."
2456 (isearch-mode forward regexp nil nil word)
2457 (setq isearch-string search
2458 isearch-message message
2459 isearch-case-fold-search case-fold)
2462 ;; arch-tag: 74850515-f7d8-43a6-8a2c-ca90a4c1e675
2463 ;;; isearch.el ends here