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