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