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