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