05c659f574fc21f2785420245bf2c51310358671
[bpt/emacs.git] / lisp / isearch.el
1 ;;; isearch.el --- incremental search minor mode.
2
3 ;; Copyright (C) 1992, 93, 94, 95, 96, 1997 Free Software Foundation, Inc.
4
5 ;; Author: Daniel LaLiberte <liberte@cs.uiuc.edu>
6 ;; Maintainer: FSF
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
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. Note:
32 ;; gnus does it wrong: (call-interactively 'isearch-forward).
33
34 ;; The key bindings active within isearch-mode are defined below in
35 ;; `isearch-mode-map' which is given bindings close to the default
36 ;; characters of the original isearch.el. With `isearch-mode',
37 ;; however, you can bind multi-character keys and it should be easier
38 ;; to add new commands. One bug though: keys with meta-prefix cannot
39 ;; be longer than two chars. Also see minibuffer-local-isearch-map
40 ;; for bindings active during `isearch-edit-string'.
41
42 ;; Note to emacs version 19 users: isearch-mode should work even if
43 ;; you switch windows with the mouse, in which case isearch-mode is
44 ;; terminated automatically before the switch. This is true of lemacs
45 ;; too, with a few more cleanups I've neglected in this release.
46 ;; No one has supplied patches for epoch yet.
47
48 ;; The search ring and completion commands automatically put you in
49 ;; the minibuffer to edit the string. This gives you a chance to
50 ;; modify the search string before executing the search. There are
51 ;; three commands to terminate the editing: C-s and C-r exit the
52 ;; minibuffer and search forward and reverse respectively, while C-m
53 ;; exits and does a nonincremental search.
54
55 ;; Exiting immediately from isearch uses isearch-edit-string instead
56 ;; of nonincremental-search, if search-nonincremental-instead is non-nil.
57 ;; The name of this option should probably be changed if we decide to
58 ;; keep the behavior. No point in forcing nonincremental search until
59 ;; the last possible moment.
60
61 ;; TODO
62 ;; - Integrate the emacs 19 generalized command history.
63 ;; - Think about incorporating query-replace.
64 ;; - Hooks and options for failed search.
65
66 ;;; Change Log:
67
68 ;; Changes before those recorded in ChangeLog:
69
70 ;; Revision 1.4 92/09/14 16:26:02 liberte
71 ;; Added prefix args to isearch-forward, etc. to switch between
72 ;; string and regular expression searching.
73 ;; Added some support for lemacs.
74 ;; Added general isearch-highlight option - but only for lemacs so far.
75 ;; Added support for frame switching in emacs 19.
76 ;; Added word search option to isearch-edit-string.
77 ;; Renamed isearch-quit to isearch-abort.
78 ;; Numerous changes to comments and doc strings.
79 ;;
80 ;; Revision 1.3 92/06/29 13:10:08 liberte
81 ;; Moved modal isearch-mode handling into isearch-mode.
82 ;; Got rid of buffer-local isearch variables.
83 ;; isearch-edit-string used by ring adjustments, completion, and
84 ;; nonincremental searching. C-s and C-r are additional exit commands.
85 ;; Renamed all regex to regexp.
86 ;; Got rid of found-start and found-point globals.
87 ;; Generalized handling of upper-case chars.
88
89 ;; Revision 1.2 92/05/27 11:33:57 liberte
90 ;; Emacs version 19 has a search ring, which is supported here.
91 ;; Other fixes found in the version 19 isearch are included here.
92 ;;
93 ;; Also see variables search-caps-disable-folding,
94 ;; search-nonincremental-instead, search-whitespace-regexp, and
95 ;; commands isearch-toggle-regexp, isearch-edit-string.
96 ;;
97 ;; semi-modal isearching is supported.
98
99 ;; Changes for 1.1
100 ;; 3/18/92 Fixed invalid-regexp.
101 ;; 3/18/92 Fixed yanking in regexps.
102
103 ;;; Code:
104
105 \f
106 ;;; Some additional options and constants.
107
108 (defgroup isearch nil
109 "Incremental search minor mode."
110 :prefix "isearch-"
111 :prefix "search-"
112 :group 'matching)
113
114
115 (defcustom search-exit-option t
116 "*Non-nil means random control characters terminate incremental search."
117 :type 'boolean
118 :group 'isearch)
119
120 (defcustom search-slow-window-lines 1
121 "*Number of lines in slow search display windows.
122 These are the short windows used during incremental search on slow terminals.
123 Negative means put the slow search window at the top (normally it's at bottom)
124 and the value is minus the number of lines."
125 :type 'integer
126 :group 'isearch)
127
128 (defcustom search-slow-speed 1200
129 "*Highest terminal speed at which to use \"slow\" style incremental search.
130 This is the style where a one-line window is created to show the line
131 that the search has reached."
132 :type 'integer
133 :group 'isearch)
134
135 (defcustom search-upper-case 'not-yanks
136 "*If non-nil, upper case chars disable case fold searching.
137 That is, upper and lower case chars must match exactly.
138 This applies no matter where the chars come from, but does not
139 apply to chars in regexps that are prefixed with `\\'.
140 If this value is `not-yanks', yanked text is always downcased."
141 :type '(choice (const :tag "off" nil)
142 (const not-yanks)
143 (sexp :tag "on" :format "%t\n" t))
144 :group 'isearch)
145
146 (defcustom search-nonincremental-instead t
147 "*If non-nil, do a nonincremental search instead if exiting immediately.
148 Actually, `isearch-edit-string' is called to let you enter the search
149 string, and RET terminates editing and does a nonincremental search."
150 :type 'boolean
151 :group 'isearch)
152
153 (defcustom search-whitespace-regexp "\\s-+"
154 "*If non-nil, regular expression to match a sequence of whitespace chars.
155 You might want to use something like \"[ \\t\\r\\n]+\" instead."
156 :type 'regexp
157 :group 'isearch)
158
159 (defcustom search-highlight t
160 "*Non-nil means incremental search highlights the current match."
161 :type 'boolean
162 :group 'isearch)
163
164 (defcustom search-invisible 'open
165 "If t incremental search can match hidden text.
166 nil means don't match invisible text.
167 If the value is `open', if the text matched is made invisible by
168 an overlay having an `invisible' property and that overlay has a property
169 `isearch-open-invisible', then incremental search will show the contents.
170 \(This applies when using `outline.el' and `hideshow.el'.)"
171 :type '(choice (const :tag "Match hidden text" t)
172 (const :tag "Open overlays" open)
173 (const :tag "Don't match hidden text" t))
174 :group 'isearch)
175
176 (defcustom isearch-hide-immediately t
177 "If t hide the previous match if needed.
178 This has efect iff `search-invisible' is set to `open' and it means
179 that if the current match is out of one of the previously shown
180 regions hide is right away, as opposed to hiding it at the end of
181 isearch."
182 :type 'boolean
183 :group 'isearch)
184
185 (defvar isearch-mode-hook nil
186 "Function(s) to call after starting up an incremental search.")
187
188 (defvar isearch-mode-end-hook nil
189 "Function(s) to call after terminating an incremental search.")
190
191 ;;; Search ring.
192
193 (defvar search-ring nil
194 "List of search string sequences.")
195 (defvar regexp-search-ring nil
196 "List of regular expression search string sequences.")
197
198 (defcustom search-ring-max 16
199 "*Maximum length of search ring before oldest elements are thrown away."
200 :type 'integer
201 :group 'isearch)
202 (defcustom regexp-search-ring-max 16
203 "*Maximum length of regexp search ring before oldest elements are thrown away."
204 :type 'integer
205 :group 'isearch)
206
207 (defvar search-ring-yank-pointer nil
208 "Index in `search-ring' of last string reused.
209 nil if none yet.")
210 (defvar regexp-search-ring-yank-pointer nil
211 "Index in `regexp-search-ring' of last string reused.
212 nil if none yet.")
213
214 (defcustom search-ring-update nil
215 "*Non-nil if advancing or retreating in the search ring should cause search.
216 Default value, nil, means edit the string instead."
217 :type 'boolean
218 :group 'isearch)
219
220 ;;; Define isearch-mode keymap.
221
222 (defvar isearch-mode-map nil
223 "Keymap for isearch-mode.")
224
225 (or isearch-mode-map
226 (let* ((i 0)
227 (map (make-keymap)))
228 (or (vectorp (nth 1 map))
229 (char-table-p (nth 1 map))
230 (error "The initialization of isearch-mode-map must be updated"))
231 ;; Make Latin-1, Latin-2, Latin-3 and Latin-4 characters
232 ;; search for themselves.
233 (aset (nth 1 map) (make-char 'latin-iso8859-1) 'isearch-printing-char)
234 (aset (nth 1 map) (make-char 'latin-iso8859-2) 'isearch-printing-char)
235 (aset (nth 1 map) (make-char 'latin-iso8859-3) 'isearch-printing-char)
236 (aset (nth 1 map) (make-char 'latin-iso8859-4) 'isearch-printing-char)
237 (aset (nth 1 map) (make-char 'latin-iso8859-9) 'isearch-printing-char)
238 ;; Make function keys, etc, exit the search.
239 (define-key map [t] 'isearch-other-control-char)
240 ;; Control chars, by default, end isearch mode transparently.
241 ;; We need these explicit definitions because, in a dense keymap,
242 ;; the binding for t does not affect characters.
243 ;; We use a dense keymap to save space.
244 (while (< i ?\ )
245 (define-key map (make-string 1 i) 'isearch-other-control-char)
246 (setq i (1+ i)))
247
248 ;; Printing chars extend the search string by default.
249 (setq i ?\ )
250 (while (< i (length (nth 1 map)))
251 (define-key map (vector i) 'isearch-printing-char)
252 (setq i (1+ i)))
253
254 ;; To handle local bindings with meta char prefix keys, define
255 ;; another full keymap. This must be done for any other prefix
256 ;; keys as well, one full keymap per char of the prefix key. It
257 ;; would be simpler to disable the global keymap, and/or have a
258 ;; default local key binding for any key not otherwise bound.
259 (let ((meta-map (make-sparse-keymap)))
260 (define-key map (char-to-string meta-prefix-char) meta-map)
261 (define-key map [escape] meta-map))
262 (define-key map (vector meta-prefix-char t) 'isearch-other-meta-char)
263
264 ;; Several non-printing chars change the searching behavior.
265 (define-key map "\C-s" 'isearch-repeat-forward)
266 (define-key map "\C-r" 'isearch-repeat-backward)
267 (define-key map "\177" 'isearch-delete-char)
268 (define-key map "\C-g" 'isearch-abort)
269 ;; This assumes \e is the meta-prefix-char.
270 (or (= ?\e meta-prefix-char)
271 (error "Inconsistency in isearch.el"))
272 (define-key map "\e\e\e" 'isearch-cancel)
273 (define-key map [escape escape escape] 'isearch-cancel)
274
275 (define-key map "\C-q" 'isearch-quote-char)
276
277 (define-key map "\r" 'isearch-exit)
278 (define-key map "\C-j" 'isearch-printing-char)
279 (define-key map "\t" 'isearch-printing-char)
280 (define-key map " " 'isearch-whitespace-chars)
281
282 (define-key map "\C-w" 'isearch-yank-word)
283 (define-key map "\C-y" 'isearch-yank-line)
284
285 ;; Define keys for regexp chars * ? |.
286 ;; Nothing special for + because it matches at least once.
287 (define-key map "*" 'isearch-*-char)
288 (define-key map "?" 'isearch-*-char)
289 (define-key map "|" 'isearch-|-char)
290
291 ;;; Turned off because I find I expect to get the global definition--rms.
292 ;;; ;; Instead bind C-h to special help command for isearch-mode.
293 ;;; (define-key map "\C-h" 'isearch-mode-help)
294
295 (define-key map "\M-n" 'isearch-ring-advance)
296 (define-key map "\M-p" 'isearch-ring-retreat)
297 (define-key map "\M-y" 'isearch-yank-kill)
298
299 (define-key map "\M-\t" 'isearch-complete)
300
301 ;; Pass frame events transparently so they won't exit the search.
302 ;; In particular, if we have more than one display open, then a
303 ;; switch-frame might be generated by someone typing at another keyboard.
304 (define-key map [switch-frame] nil)
305 (define-key map [delete-frame] nil)
306 (define-key map [iconify-frame] nil)
307 (define-key map [make-frame-visible] nil)
308 ;; For searching multilingual text.
309 (define-key map "\C-\\" 'isearch-toggle-input-method)
310 (define-key map "\C-^" 'isearch-toggle-specified-input-method)
311
312 (setq isearch-mode-map map)
313 ))
314
315 ;; Some bindings you may want to put in your isearch-mode-hook.
316 ;; Suggest some alternates...
317 ;; (define-key isearch-mode-map "\C-t" 'isearch-toggle-case-fold)
318 ;; (define-key isearch-mode-map "\C-t" 'isearch-toggle-regexp)
319 ;; (define-key isearch-mode-map "\C-^" 'isearch-edit-string)
320
321
322 (defvar minibuffer-local-isearch-map nil
323 "Keymap for editing isearch strings in the minibuffer.")
324
325 (or minibuffer-local-isearch-map
326 (let ((map (copy-keymap minibuffer-local-map)))
327 (define-key map "\r" 'isearch-nonincremental-exit-minibuffer)
328 (define-key map "\M-n" 'isearch-ring-advance-edit)
329 (define-key map "\M-p" 'isearch-ring-retreat-edit)
330 (define-key map "\M-\t" 'isearch-complete-edit)
331 (define-key map "\C-s" 'isearch-forward-exit-minibuffer)
332 (define-key map "\C-r" 'isearch-reverse-exit-minibuffer)
333 (setq minibuffer-local-isearch-map map)
334 ))
335
336 ;; Internal variables declared globally for byte-compiler.
337 ;; These are all set with setq while isearching
338 ;; and bound locally while editing the search string.
339
340 (defvar isearch-forward nil) ; Searching in the forward direction.
341 (defvar isearch-regexp nil) ; Searching for a regexp.
342 (defvar isearch-word nil) ; Searching for words.
343
344 (defvar isearch-cmds nil) ; Stack of search status sets.
345 (defvar isearch-string "") ; The current search string.
346 (defvar isearch-message "") ; text-char-description version of isearch-string
347
348 (defvar isearch-success t) ; Searching is currently successful.
349 (defvar isearch-invalid-regexp nil) ; Regexp not well formed.
350 (defvar isearch-within-brackets nil) ; Regexp has unclosed [.
351 (defvar isearch-other-end nil) ; Start (end) of match if forward (backward).
352 (defvar isearch-wrapped nil) ; Searching restarted from the top (bottom).
353 (defvar isearch-barrier 0)
354 (defvar isearch-just-started nil)
355
356 ; case-fold-search while searching.
357 ; either nil, t, or 'yes. 'yes means the same as t except that mixed
358 ; case in the search string is ignored.
359 (defvar isearch-case-fold-search nil)
360
361 (defvar isearch-adjusted nil)
362 (defvar isearch-slow-terminal-mode nil)
363 ;;; If t, using a small window.
364 (defvar isearch-small-window nil)
365 (defvar isearch-opoint 0)
366 ;;; The window configuration active at the beginning of the search.
367 (defvar isearch-window-configuration nil)
368
369 ;; Flag to indicate a yank occurred, so don't move the cursor.
370 (defvar isearch-yank-flag nil)
371
372 ;; Flag to indicate that we are searching multibyte characaters.
373 (defvar isearch-multibyte-characters-flag nil)
374
375 ;;; A function to be called after each input character is processed.
376 ;;; (It is not called after characters that exit the search.)
377 ;;; It is only set from an optional argument to `isearch-mode'.
378 (defvar isearch-op-fun nil)
379
380 ;;; Is isearch-mode in a recursive edit for modal searching.
381 (defvar isearch-recursive-edit nil)
382
383 ;;; Should isearch be terminated after doing one search?
384 (defvar isearch-nonincremental nil)
385
386 ;; New value of isearch-forward after isearch-edit-string.
387 (defvar isearch-new-forward nil)
388
389 ;; Accumulate here the overlays opened during searching.
390 (defvar isearch-opened-overlays nil)
391
392 ;; Minor-mode-alist changes - kind of redundant with the
393 ;; echo area, but if isearching in multiple windows, it can be useful.
394
395 (or (assq 'isearch-mode minor-mode-alist)
396 (nconc minor-mode-alist
397 (list '(isearch-mode isearch-mode))))
398
399 (defvar isearch-mode nil) ;; Name of the minor mode, if non-nil.
400 (make-variable-buffer-local 'isearch-mode)
401
402 (define-key global-map "\C-s" 'isearch-forward)
403 (define-key esc-map "\C-s" 'isearch-forward-regexp)
404 (define-key global-map "\C-r" 'isearch-backward)
405 (define-key esc-map "\C-r" 'isearch-backward-regexp)
406
407 ;;; Entry points to isearch-mode.
408 ;;; These four functions should replace those in loaddefs.el
409 ;;; An alternative is to defalias isearch-forward etc to isearch-mode,
410 ;;; and look at this-command to set the options accordingly.
411
412 (defun isearch-forward (&optional regexp-p no-recursive-edit)
413 "\
414 Do incremental search forward.
415 With a prefix argument, do an incremental regular expression search instead.
416 \\<isearch-mode-map>
417 As you type characters, they add to the search string and are found.
418 The following non-printing keys are bound in `isearch-mode-map'.
419
420 Type \\[isearch-delete-char] to cancel characters from end of search string.
421 Type \\[isearch-exit] to exit, leaving point at location found.
422 Type LFD (C-j) to match end of line.
423 Type \\[isearch-repeat-forward] to search again forward,\
424 \\[isearch-repeat-backward] to search again backward.
425 Type \\[isearch-yank-word] to yank word from buffer onto end of search\
426 string and search for it.
427 Type \\[isearch-yank-line] to yank rest of line onto end of search string\
428 and search for it.
429 Type \\[isearch-yank-kill] to yank the last string of killed text.
430 Type \\[isearch-quote-char] to quote control character to search for it.
431 \\[isearch-abort] while searching or when search has failed cancels input\
432 back to what has
433 been found successfully.
434 \\[isearch-abort] when search is successful aborts and moves point to\
435 starting point.
436
437 Also supported is a search ring of the previous 16 search strings.
438 Type \\[isearch-ring-advance] to search for the next item in the search ring.
439 Type \\[isearch-ring-retreat] to search for the previous item in the search\
440 ring.
441 Type \\[isearch-complete] to complete the search string using the search ring.
442
443 The above keys, bound in `isearch-mode-map', are often controlled by
444 options; do M-x apropos on search-.* to find them.
445 Other control and meta characters terminate the search
446 and are then executed normally (depending on `search-exit-option').
447 Likewise for function keys and mouse button events.
448
449 If this function is called non-interactively, it does not return to
450 the calling function until the search is done."
451
452 (interactive "P\np")
453 (isearch-mode t (not (null regexp-p)) nil (not no-recursive-edit)))
454
455 (defun isearch-forward-regexp (&optional not-regexp no-recursive-edit)
456 "\
457 Do incremental search forward for regular expression.
458 With a prefix argument, do a regular string search instead.
459 Like ordinary incremental search except that your input
460 is treated as a regexp. See \\[isearch-forward] for more info."
461 (interactive "P\np")
462 (isearch-mode t (null not-regexp) nil (not no-recursive-edit)))
463
464 (defun isearch-backward (&optional regexp-p no-recursive-edit)
465 "\
466 Do incremental search backward.
467 With a prefix argument, do a regular expression search instead.
468 See \\[isearch-forward] for more information."
469 (interactive "P\np")
470 (isearch-mode nil (not (null regexp-p)) nil (not no-recursive-edit)))
471
472 (defun isearch-backward-regexp (&optional not-regexp no-recursive-edit)
473 "\
474 Do incremental search backward for regular expression.
475 With a prefix argument, do a regular string search instead.
476 Like ordinary incremental search except that your input
477 is treated as a regexp. See \\[isearch-forward] for more info."
478 (interactive "P\np")
479 (isearch-mode nil (null not-regexp) nil (not no-recursive-edit)))
480
481
482 (defun isearch-mode-help ()
483 (interactive)
484 (describe-function 'isearch-forward)
485 (isearch-update))
486
487 \f
488 ;; isearch-mode only sets up incremental search for the minor mode.
489 ;; All the work is done by the isearch-mode commands.
490
491 ;; Not used yet:
492 ;;(defvar isearch-commands '(isearch-forward isearch-backward
493 ;; isearch-forward-regexp isearch-backward-regexp)
494 ;; "List of commands for which isearch-mode does not recursive-edit.")
495
496
497 (defun isearch-mode (forward &optional regexp op-fun recursive-edit word-p)
498 "Start isearch minor mode. Called by `isearch-forward', etc.
499
500 \\{isearch-mode-map}"
501
502 ;; Initialize global vars.
503 (setq isearch-forward forward
504 isearch-regexp regexp
505 isearch-word word-p
506 isearch-op-fun op-fun
507 isearch-case-fold-search case-fold-search
508 isearch-string ""
509 isearch-message ""
510 isearch-cmds nil
511 isearch-success t
512 isearch-wrapped nil
513 isearch-barrier (point)
514 isearch-adjusted nil
515 isearch-yank-flag nil
516 isearch-invalid-regexp nil
517 isearch-within-brackets nil
518 isearch-slow-terminal-mode (and (<= baud-rate search-slow-speed)
519 (> (window-height)
520 (* 4 search-slow-window-lines)))
521 isearch-other-end nil
522 isearch-small-window nil
523 isearch-just-started t
524 isearch-multibyte-characters-flag nil
525
526 isearch-opoint (point)
527 search-ring-yank-pointer nil
528 isearch-opened-overlays nil
529 regexp-search-ring-yank-pointer nil)
530 (looking-at "")
531 (setq isearch-window-configuration
532 (if isearch-slow-terminal-mode (current-window-configuration) nil))
533
534 ;; Maybe make minibuffer frame visible and/or raise it.
535 (let ((frame (window-frame (minibuffer-window))))
536 (if (not (memq (frame-live-p frame) '(nil t)))
537 (progn
538 (make-frame-visible frame)
539 (if minibuffer-auto-raise
540 (raise-frame frame)))))
541
542 (setq isearch-mode " Isearch") ;; forward? regexp?
543 (force-mode-line-update)
544
545 (isearch-push-state)
546
547 (setq overriding-terminal-local-map isearch-mode-map)
548 (isearch-update)
549 (run-hooks 'isearch-mode-hook)
550
551 (add-hook 'mouse-leave-buffer-hook 'isearch-done)
552
553 ;; isearch-mode can be made modal (in the sense of not returning to
554 ;; the calling function until searching is completed) by entering
555 ;; a recursive-edit and exiting it when done isearching.
556 (if recursive-edit
557 (let ((isearch-recursive-edit t))
558 (recursive-edit)))
559 isearch-success)
560
561
562 ;; Some high level utilities. Others below.
563
564 (defun isearch-update ()
565 ;; Called after each command to update the display.
566 (if (null unread-command-events)
567 (progn
568 (if (not (input-pending-p))
569 (isearch-message))
570 (if (and isearch-slow-terminal-mode
571 (not (or isearch-small-window
572 (pos-visible-in-window-p))))
573 (let ((found-point (point)))
574 (setq isearch-small-window t)
575 (move-to-window-line 0)
576 (let ((window-min-height 1))
577 (split-window nil (if (< search-slow-window-lines 0)
578 (1+ (- search-slow-window-lines))
579 (- (window-height)
580 (1+ search-slow-window-lines)))))
581 (if (< search-slow-window-lines 0)
582 (progn (vertical-motion (- 1 search-slow-window-lines))
583 (set-window-start (next-window) (point))
584 (set-window-hscroll (next-window)
585 (window-hscroll))
586 (set-window-hscroll (selected-window) 0))
587 (other-window 1))
588 (goto-char found-point)))
589 (if isearch-other-end
590 (if (< isearch-other-end (point)) ; isearch-forward?
591 (isearch-highlight isearch-other-end (point))
592 (isearch-highlight (point) isearch-other-end))
593 (isearch-dehighlight nil))
594 ))
595 (setq ;; quit-flag nil not for isearch-mode
596 isearch-adjusted nil
597 isearch-yank-flag nil)
598 )
599
600 (defun isearch-done (&optional nopush edit)
601 (remove-hook 'mouse-leave-buffer-hook 'isearch-done)
602 ;; Called by all commands that terminate isearch-mode.
603 ;; If NOPUSH is non-nil, we don't push the string on the search ring.
604 (setq overriding-terminal-local-map nil)
605 ;; (setq pre-command-hook isearch-old-pre-command-hook) ; for lemacs
606 (isearch-dehighlight t)
607 (let ((found-start (window-start (selected-window)))
608 (found-point (point)))
609 (if isearch-window-configuration
610 (set-window-configuration isearch-window-configuration))
611
612 (if isearch-small-window
613 (goto-char found-point)
614 ;; Exiting the save-window-excursion clobbers window-start; restore it.
615 (set-window-start (selected-window) found-start t))
616
617 ;; If there was movement, mark the starting position.
618 ;; Maybe should test difference between and set mark iff > threshold.
619 (if (/= (point) isearch-opoint)
620 (or (and transient-mark-mode mark-active)
621 (progn
622 (push-mark isearch-opoint t)
623 (or executing-kbd-macro (> (minibuffer-depth) 0)
624 (message "Mark saved where search started"))))))
625
626 (setq isearch-mode nil)
627 (force-mode-line-update)
628
629 (if (and (> (length isearch-string) 0) (not nopush))
630 ;; Update the ring data.
631 (isearch-update-ring isearch-string isearch-regexp))
632
633 (run-hooks 'isearch-mode-end-hook)
634 (and (not edit) isearch-recursive-edit (exit-recursive-edit)))
635
636 (defun isearch-update-ring (string &optional regexp)
637 "Add STRING to the beginning of the search ring.
638 REGEXP says which ring to use."
639 (if regexp
640 (if (or (null regexp-search-ring)
641 (not (string= string (car regexp-search-ring))))
642 (progn
643 (setq regexp-search-ring
644 (cons string regexp-search-ring))
645 (if (> (length regexp-search-ring) regexp-search-ring-max)
646 (setcdr (nthcdr (1- search-ring-max) regexp-search-ring)
647 nil))))
648 (if (or (null search-ring)
649 (not (string= string (car search-ring))))
650 (progn
651 (setq search-ring (cons string search-ring))
652 (if (> (length search-ring) search-ring-max)
653 (setcdr (nthcdr (1- search-ring-max) search-ring) nil))))))
654
655 ;;; Switching buffers should first terminate isearch-mode.
656 ;;; This is done quite differently for each variant of emacs.
657 ;;; For lemacs, see Exiting in lemacs below
658
659 ;; For Emacs 19, the frame switch event is handled.
660 (defun isearch-switch-frame-handler ()
661 (interactive) ;; Is this necessary?
662 ;; First terminate isearch-mode.
663 (isearch-done)
664 (isearch-clean-overlays)
665 (handle-switch-frame (car (cdr (isearch-last-command-char)))))
666
667 \f
668 ;; Commands active while inside of the isearch minor mode.
669
670 (defun isearch-exit ()
671 "Exit search normally.
672 However, if this is the first command after starting incremental
673 search and `search-nonincremental-instead' is non-nil, do a
674 nonincremental search instead via `isearch-edit-string'."
675 (interactive)
676 (if (and search-nonincremental-instead
677 (= 0 (length isearch-string)))
678 (let ((isearch-nonincremental t))
679 (isearch-edit-string)))
680 (isearch-done)
681 (isearch-clean-overlays))
682
683
684 (defun isearch-edit-string ()
685 "Edit the search string in the minibuffer.
686 The following additional command keys are active while editing.
687 \\<minibuffer-local-isearch-map>
688 \\[exit-minibuffer] to resume incremental searching with the edited string.
689 \\[isearch-nonincremental-exit-minibuffer] to do one nonincremental search.
690 \\[isearch-forward-exit-minibuffer] to resume isearching forward.
691 \\[isearch-reverse-exit-minibuffer] to resume isearching backward.
692 \\[isearch-ring-advance-edit] to replace the search string with the next item in the search ring.
693 \\[isearch-ring-retreat-edit] to replace the search string with the previous item in the search ring.
694 \\[isearch-complete-edit] to complete the search string using the search ring.
695 \\<isearch-mode-map>
696 If first char entered is \\[isearch-yank-word], then do word search instead."
697
698 ;; This code is very hairy for several reasons, explained in the code.
699 ;; Mainly, isearch-mode must be terminated while editing and then restarted.
700 ;; If there were a way to catch any change of buffer from the minibuffer,
701 ;; this could be simplified greatly.
702 ;; Editing doesn't back up the search point. Should it?
703 (interactive)
704 (condition-case err
705 (progn
706 (let ((isearch-nonincremental isearch-nonincremental)
707
708 ;; Locally bind all isearch global variables to protect them
709 ;; from recursive isearching.
710 ;; isearch-string -message and -forward are not bound
711 ;; so they may be changed. Instead, save the values.
712 (isearch-new-string isearch-string)
713 (isearch-new-message isearch-message)
714 (isearch-new-forward isearch-forward)
715 (isearch-new-word isearch-word)
716
717 (isearch-regexp isearch-regexp)
718 (isearch-op-fun isearch-op-fun)
719 (isearch-cmds isearch-cmds)
720 (isearch-success isearch-success)
721 (isearch-wrapped isearch-wrapped)
722 (isearch-barrier isearch-barrier)
723 (isearch-adjusted isearch-adjusted)
724 (isearch-yank-flag isearch-yank-flag)
725 (isearch-invalid-regexp isearch-invalid-regexp)
726 (isearch-within-brackets isearch-within-brackets)
727 ;;; Don't bind this. We want isearch-search, below, to set it.
728 ;;; And the old value won't matter after that.
729 ;;; (isearch-other-end isearch-other-end)
730 ;;; Perhaps some of these other variables should be bound for a
731 ;;; shorter period, ending before the next isearch-search.
732 ;;; But there doesn't seem to be a real bug, so let's not risk it now.
733 (isearch-opoint isearch-opoint)
734 (isearch-slow-terminal-mode isearch-slow-terminal-mode)
735 (isearch-small-window isearch-small-window)
736 (isearch-recursive-edit isearch-recursive-edit)
737 ;; Save current configuration so we can restore it here.
738 (isearch-window-configuration (current-window-configuration))
739 )
740
741 ;; Actually terminate isearching until editing is done.
742 ;; This is so that the user can do anything without failure,
743 ;; like switch buffers and start another isearch, and return.
744 (condition-case err
745 (isearch-done t t)
746 (exit nil)) ; was recursive editing
747
748 (isearch-message) ;; for read-char
749 (unwind-protect
750 (let* (;; Why does following read-char echo?
751 ;;(echo-keystrokes 0) ;; not needed with above message
752 (e (let ((cursor-in-echo-area t))
753 (read-event)))
754 ;; Binding minibuffer-history-symbol to nil is a work-around
755 ;; for some incompatibility with gmhist.
756 (minibuffer-history-symbol)
757 (message-log-max nil))
758 ;; If the first character the user types when we prompt them
759 ;; for a string is the yank-word character, then go into
760 ;; word-search mode. Otherwise unread that character and
761 ;; read a key the normal way.
762 ;; Word search does not apply (yet) to regexp searches,
763 ;; no check is made here.
764 (message (isearch-message-prefix nil nil t))
765 (if (eq 'isearch-yank-word
766 (lookup-key isearch-mode-map (vector e)))
767 (setq isearch-word t;; so message-prefix is right
768 isearch-new-word t)
769 (cancel-kbd-macro-events)
770 (isearch-unread e))
771 (setq cursor-in-echo-area nil)
772 (setq isearch-new-string
773 (let (junk-ring)
774 (read-from-minibuffer
775 (isearch-message-prefix nil nil isearch-nonincremental)
776 isearch-string
777 minibuffer-local-isearch-map nil
778 'junk-ring))
779 isearch-new-message
780 (mapconcat 'isearch-text-char-description
781 isearch-new-string "")))
782 ;; Always resume isearching by restarting it.
783 (isearch-mode isearch-forward
784 isearch-regexp
785 isearch-op-fun
786 nil
787 isearch-word)
788
789 ;; Copy new local values to isearch globals
790 (setq isearch-string isearch-new-string
791 isearch-message isearch-new-message
792 isearch-forward isearch-new-forward
793 isearch-word isearch-new-word))
794
795 ;; Empty isearch-string means use default.
796 (if (= 0 (length isearch-string))
797 (setq isearch-string (or (car (if isearch-regexp
798 regexp-search-ring
799 search-ring))
800 ""))
801 ;; This used to set the last search string,
802 ;; but I think it is not right to do that here.
803 ;; Only the string actually used should be saved.
804 ))
805
806 ;; Push the state as of before this C-s.
807 (isearch-push-state)
808
809 ;; Reinvoke the pending search.
810 (isearch-search)
811 (isearch-update)
812 (if isearch-nonincremental
813 (progn
814 ;; (sit-for 1) ;; needed if isearch-done does: (message "")
815 (isearch-done))))
816
817 (quit ; handle abort-recursive-edit
818 (isearch-abort) ;; outside of let to restore outside global values
819 )))
820
821 (defun isearch-nonincremental-exit-minibuffer ()
822 (interactive)
823 (setq isearch-nonincremental t)
824 (exit-minibuffer))
825
826 (defun isearch-forward-exit-minibuffer ()
827 (interactive)
828 (setq isearch-new-forward t)
829 (exit-minibuffer))
830
831 (defun isearch-reverse-exit-minibuffer ()
832 (interactive)
833 (setq isearch-new-forward nil)
834 (exit-minibuffer))
835
836 (defun isearch-cancel ()
837 "Terminate the search and go back to the starting point."
838 (interactive)
839 (goto-char isearch-opoint)
840 (isearch-done t)
841 (isearch-clean-overlays)
842 (signal 'quit nil)) ; and pass on quit signal
843
844 (defun isearch-abort ()
845 "Abort incremental search mode if searching is successful, signaling quit.
846 Otherwise, revert to previous successful search and continue searching.
847 Use `isearch-exit' to quit without signaling."
848 (interactive)
849 ;; (ding) signal instead below, if quitting
850 (discard-input)
851 (if isearch-success
852 ;; If search is successful, move back to starting point
853 ;; and really do quit.
854 (progn (goto-char isearch-opoint)
855 (setq isearch-success nil)
856 (isearch-done t) ; exit isearch
857 (isearch-clean-overlays)
858 (signal 'quit nil)) ; and pass on quit signal
859 ;; If search is failing, or has an incomplete regexp,
860 ;; rub out until it is once more successful.
861 (while (or (not isearch-success) isearch-invalid-regexp)
862 (isearch-pop-state))
863 (isearch-update)))
864
865 (defun isearch-repeat (direction)
866 ;; Utility for isearch-repeat-forward and -backward.
867 (if (eq isearch-forward (eq direction 'forward))
868 ;; C-s in forward or C-r in reverse.
869 (if (equal isearch-string "")
870 ;; If search string is empty, use last one.
871 (setq isearch-string
872 (or (if isearch-regexp
873 (car regexp-search-ring)
874 (car search-ring))
875 "")
876 isearch-message
877 (mapconcat 'isearch-text-char-description
878 isearch-string ""))
879 ;; If already have what to search for, repeat it.
880 (or isearch-success
881 (progn
882 (goto-char (if isearch-forward (point-min) (point-max)))
883 (setq isearch-wrapped t))))
884 ;; C-s in reverse or C-r in forward, change direction.
885 (setq isearch-forward (not isearch-forward)))
886
887 (setq isearch-barrier (point)) ; For subsequent \| if regexp.
888
889 (if (equal isearch-string "")
890 (setq isearch-success t)
891 (if (and isearch-success (equal (match-end 0) (match-beginning 0))
892 (not isearch-just-started))
893 ;; If repeating a search that found
894 ;; an empty string, ensure we advance.
895 (if (if isearch-forward (eobp) (bobp))
896 ;; If there's nowhere to advance to, fail (and wrap next time).
897 (progn
898 (setq isearch-success nil)
899 (ding))
900 (forward-char (if isearch-forward 1 -1))
901 (isearch-search))
902 (isearch-search)))
903
904 (isearch-push-state)
905 (isearch-update))
906
907 (defun isearch-repeat-forward ()
908 "Repeat incremental search forwards."
909 (interactive)
910 (isearch-repeat 'forward))
911
912 (defun isearch-repeat-backward ()
913 "Repeat incremental search backwards."
914 (interactive)
915 (isearch-repeat 'backward))
916
917 (defun isearch-toggle-regexp ()
918 "Toggle regexp searching on or off."
919 ;; The status stack is left unchanged.
920 (interactive)
921 (setq isearch-regexp (not isearch-regexp))
922 (if isearch-regexp (setq isearch-word nil))
923 (isearch-update))
924
925 (defun isearch-toggle-case-fold ()
926 "Toggle case folding in searching on or off."
927 (interactive)
928 (setq isearch-case-fold-search
929 (if isearch-case-fold-search nil 'yes))
930 (let ((message-log-max nil))
931 (message "%s%s [case %ssensitive]"
932 (isearch-message-prefix nil nil isearch-nonincremental)
933 isearch-message
934 (if isearch-case-fold-search "in" "")))
935 (setq isearch-adjusted t)
936 (sit-for 1)
937 (isearch-update))
938
939 (defun isearch-delete-char ()
940 "Discard last input item and move point back.
941 If no previous match was done, just beep."
942 (interactive)
943 (if (null (cdr isearch-cmds))
944 (ding)
945 (isearch-pop-state))
946 (isearch-update))
947
948
949 (defun isearch-yank (chunk)
950 ;; Helper for isearch-yank-word and isearch-yank-line
951 ;; CHUNK should be word, line, kill, or x-sel.
952 (let ((string (cond
953 ((eq chunk 'kill)
954 (current-kill 0))
955 ((eq chunk 'x-sel)
956 (x-get-selection))
957 (t
958 (save-excursion
959 (and (not isearch-forward) isearch-other-end
960 (goto-char isearch-other-end))
961 (buffer-substring
962 (point)
963 (save-excursion
964 (cond
965 ((eq chunk 'word)
966 (forward-word 1))
967 ((eq chunk 'line)
968 (end-of-line)))
969 (point))))))))
970 ;; Downcase the string if not supposed to case-fold yanked strings.
971 (if (and isearch-case-fold-search
972 (eq 'not-yanks search-upper-case))
973 (setq string (downcase string)))
974 (if isearch-regexp (setq string (regexp-quote string)))
975 (setq isearch-string (concat isearch-string string)
976 isearch-message
977 (concat isearch-message
978 (mapconcat 'isearch-text-char-description
979 string ""))
980 ;; Don't move cursor in reverse search.
981 isearch-yank-flag t))
982 (isearch-search-and-update))
983
984 (defun isearch-yank-kill ()
985 "Pull string from kill ring into search string."
986 (interactive)
987 (isearch-yank 'kill))
988
989 (defun isearch-yank-word ()
990 "Pull next word from buffer into search string."
991 (interactive)
992 (isearch-yank 'word))
993
994 (defun isearch-yank-line ()
995 "Pull rest of line from buffer into search string."
996 (interactive)
997 (isearch-yank 'line))
998
999
1000 (defun isearch-search-and-update ()
1001 ;; Do the search and update the display.
1002 (if (and (not isearch-success)
1003 ;; unsuccessful regexp search may become
1004 ;; successful by addition of characters which
1005 ;; make isearch-string valid
1006 (not isearch-regexp))
1007 nil
1008 ;; In reverse search, adding stuff at
1009 ;; the end may cause zero or many more chars to be
1010 ;; matched, in the string following point.
1011 ;; Allow all those possibilities without moving point as
1012 ;; long as the match does not extend past search origin.
1013 (if (and (not isearch-forward) (not isearch-adjusted)
1014 (condition-case ()
1015 (let ((case-fold-search isearch-case-fold-search))
1016 (looking-at (if isearch-regexp isearch-string
1017 (regexp-quote isearch-string))))
1018 (error nil))
1019 (or isearch-yank-flag
1020 (<= (match-end 0)
1021 (min isearch-opoint isearch-barrier))))
1022 (progn
1023 (setq isearch-success t
1024 isearch-invalid-regexp nil
1025 isearch-within-brackets nil
1026 isearch-other-end (match-end 0))
1027 (if (and (eq isearch-case-fold-search t) search-upper-case)
1028 (setq isearch-case-fold-search
1029 (isearch-no-upper-case-p isearch-string isearch-regexp))))
1030 ;; Not regexp, not reverse, or no match at point.
1031 (if (and isearch-other-end (not isearch-adjusted))
1032 (goto-char (if isearch-forward isearch-other-end
1033 (min isearch-opoint
1034 isearch-barrier
1035 (1+ isearch-other-end)))))
1036 (isearch-search)
1037 ))
1038 (isearch-push-state)
1039 (if isearch-op-fun (funcall isearch-op-fun))
1040 (isearch-update))
1041
1042
1043 ;; *, ?, and | chars can make a regexp more liberal.
1044 ;; They can make a regexp match sooner or make it succeed instead of failing.
1045 ;; So go back to place last successful search started
1046 ;; or to the last ^S/^R (barrier), whichever is nearer.
1047 ;; + needs no special handling because the string must match at least once.
1048
1049 (defun isearch-*-char ()
1050 "Handle * and ? specially in regexps."
1051 (interactive)
1052 (if isearch-regexp
1053
1054 (progn
1055 (setq isearch-adjusted t)
1056 ;; Get the isearch-other-end from before the last search.
1057 ;; We want to start from there,
1058 ;; so that we don't retreat farther than that.
1059 ;; (car isearch-cmds) is after last search;
1060 ;; (car (cdr isearch-cmds)) is from before it.
1061 (let ((cs (nth 5 (car (cdr isearch-cmds)))))
1062 (setq cs (or cs isearch-barrier))
1063 (goto-char
1064 (if isearch-forward
1065 (max cs isearch-barrier)
1066 (min cs isearch-barrier))))))
1067 (isearch-process-search-char (isearch-last-command-char)))
1068
1069
1070 (defun isearch-|-char ()
1071 "If in regexp search, jump to the barrier."
1072 (interactive)
1073 (if isearch-regexp
1074 (progn
1075 (setq isearch-adjusted t)
1076 (goto-char isearch-barrier)))
1077 (isearch-process-search-char (isearch-last-command-char)))
1078
1079
1080 (defalias 'isearch-other-control-char 'isearch-other-meta-char)
1081
1082 (defun isearch-other-meta-char ()
1083 "Exit the search normally and reread this key sequence.
1084 But only if `search-exit-option' is non-nil, the default.
1085 If it is the symbol `edit', the search string is edited in the minibuffer
1086 and the meta character is unread so that it applies to editing the string."
1087 (interactive)
1088 (let* ((key (this-command-keys))
1089 (main-event (aref key 0))
1090 (keylist (listify-key-sequence key)))
1091 (cond ((and (= (length key) 1)
1092 (let ((lookup (lookup-key function-key-map key)))
1093 (not (or (null lookup) (integerp lookup)
1094 (keymapp lookup)))))
1095 ;; Handle a function key that translates into something else.
1096 ;; If the key has a global definition too,
1097 ;; exit and unread the key itself, so its global definition runs.
1098 ;; Otherwise, unread the translation,
1099 ;; so that the translated key takes effect within isearch.
1100 (cancel-kbd-macro-events)
1101 (if (lookup-key global-map key)
1102 (progn
1103 (isearch-done)
1104 (apply 'isearch-unread keylist))
1105 (apply 'isearch-unread
1106 (listify-key-sequence (lookup-key function-key-map key)))))
1107 (
1108 ;; Handle an undefined shifted control character
1109 ;; by downshifting it if that makes it defined.
1110 ;; (As read-key-sequence would normally do,
1111 ;; if we didn't have a default definition.)
1112 (let ((mods (event-modifiers main-event)))
1113 (and (integerp main-event)
1114 (memq 'shift mods)
1115 (memq 'control mods)
1116 (lookup-key isearch-mode-map
1117 (let ((copy (copy-sequence key)))
1118 (aset copy 0
1119 (- main-event (- ?\C-\S-a ?\C-a)))
1120 copy)
1121 nil)))
1122 (setcar keylist (- main-event (- ?\C-\S-a ?\C-a)))
1123 (cancel-kbd-macro-events)
1124 (apply 'isearch-unread keylist))
1125 ((eq search-exit-option 'edit)
1126 (apply 'isearch-unread keylist)
1127 (isearch-edit-string))
1128 (search-exit-option
1129 (let (window)
1130 (cancel-kbd-macro-events)
1131 (apply 'isearch-unread keylist)
1132 ;; Properly handle scroll-bar and mode-line clicks
1133 ;; for which a dummy prefix event was generated as (aref key 0).
1134 (and (> (length key) 1)
1135 (symbolp (aref key 0))
1136 (listp (aref key 1))
1137 (not (numberp (posn-point (event-start (aref key 1)))))
1138 ;; Convert the event back into its raw form,
1139 ;; with the dummy prefix implicit in the mouse event,
1140 ;; so it will get split up once again.
1141 (progn (setq unread-command-events
1142 (cdr unread-command-events))
1143 (setq main-event (car unread-command-events))
1144 (setcar (cdr (event-start main-event))
1145 (car (nth 1 (event-start main-event))))))
1146 ;; If we got a mouse click, maybe it was read with the buffer
1147 ;; it was clicked on. If so, that buffer, not the current one,
1148 ;; is in isearch mode. So end the search in that buffer.
1149 (if (and (listp main-event)
1150 (setq window (posn-window (event-start main-event)))
1151 (windowp window))
1152 (save-excursion
1153 (set-buffer (window-buffer window))
1154 (isearch-done)
1155 (isearch-clean-overlays))
1156 (isearch-done)
1157 (isearch-clean-overlays))))
1158 (t;; otherwise nil
1159 (isearch-process-search-string key key)))))
1160
1161 (defun isearch-quote-char ()
1162 "Quote special characters for incremental search."
1163 (interactive)
1164 (isearch-process-search-char (read-quoted-char (isearch-message t))))
1165
1166 (defun isearch-return-char ()
1167 "Convert return into newline for incremental search.
1168 Obsolete."
1169 (interactive)
1170 (isearch-process-search-char ?\n))
1171
1172 (defun isearch-printing-char ()
1173 "Add this ordinary printing character to the search string and search."
1174 (interactive)
1175 (if isearch-multibyte-characters-flag
1176 (isearch-process-search-multibyte-characters (isearch-last-command-char))
1177 (isearch-process-search-char (isearch-last-command-char))))
1178
1179 (defun isearch-whitespace-chars ()
1180 "Match all whitespace chars, if in regexp mode.
1181 If you want to search for just a space, type C-q SPC."
1182 (interactive)
1183 (if isearch-regexp
1184 (if (and search-whitespace-regexp (not isearch-within-brackets)
1185 (not isearch-invalid-regexp))
1186 (isearch-process-search-string search-whitespace-regexp " ")
1187 (isearch-printing-char))
1188 (progn
1189 ;; This way of doing word search doesn't correctly extend current search.
1190 ;; (setq isearch-word t)
1191 ;; (setq isearch-adjusted t)
1192 ;; (goto-char isearch-barrier)
1193 (isearch-printing-char))))
1194
1195 (defun isearch-process-search-char (char)
1196 ;; Append the char to the search string, update the message and re-search.
1197 (isearch-process-search-string
1198 (isearch-char-to-string char)
1199 (if (>= char 0200)
1200 (char-to-string char)
1201 (isearch-text-char-description char))))
1202
1203 (defun isearch-process-search-string (string message)
1204 (setq isearch-string (concat isearch-string string)
1205 isearch-message (concat isearch-message message))
1206 (isearch-search-and-update))
1207
1208 \f
1209 ;; Search Ring
1210
1211 (defun isearch-ring-adjust1 (advance)
1212 ;; Helper for isearch-ring-adjust
1213 (let* ((ring (if isearch-regexp regexp-search-ring search-ring))
1214 (length (length ring))
1215 (yank-pointer-name (if isearch-regexp
1216 'regexp-search-ring-yank-pointer
1217 'search-ring-yank-pointer))
1218 (yank-pointer (eval yank-pointer-name)))
1219 (if (zerop length)
1220 ()
1221 (set yank-pointer-name
1222 (setq yank-pointer
1223 (mod (+ (or yank-pointer 0)
1224 (if advance -1 1))
1225 length)))
1226 (setq isearch-string (nth yank-pointer ring)
1227 isearch-message (mapconcat 'isearch-text-char-description
1228 isearch-string "")))))
1229
1230 (defun isearch-ring-adjust (advance)
1231 ;; Helper for isearch-ring-advance and isearch-ring-retreat
1232 (isearch-ring-adjust1 advance)
1233 (if search-ring-update
1234 (progn
1235 (isearch-search)
1236 (isearch-update))
1237 (isearch-edit-string)
1238 )
1239 (isearch-push-state))
1240
1241 (defun isearch-ring-advance ()
1242 "Advance to the next search string in the ring."
1243 ;; This could be more general to handle a prefix arg, but who would use it.
1244 (interactive)
1245 (isearch-ring-adjust 'advance))
1246
1247 (defun isearch-ring-retreat ()
1248 "Retreat to the previous search string in the ring."
1249 (interactive)
1250 (isearch-ring-adjust nil))
1251
1252 (defun isearch-ring-advance-edit (n)
1253 "Insert the next element of the search history into the minibuffer."
1254 (interactive "p")
1255 (let* ((yank-pointer-name (if isearch-regexp
1256 'regexp-search-ring-yank-pointer
1257 'search-ring-yank-pointer))
1258 (yank-pointer (eval yank-pointer-name))
1259 (ring (if isearch-regexp regexp-search-ring search-ring))
1260 (length (length ring)))
1261 (if (zerop length)
1262 ()
1263 (set yank-pointer-name
1264 (setq yank-pointer
1265 (mod (- (or yank-pointer 0) n)
1266 length)))
1267
1268 (erase-buffer)
1269 (insert (nth yank-pointer ring))
1270 (goto-char (point-max)))))
1271
1272 (defun isearch-ring-retreat-edit (n)
1273 "Inserts the previous element of the search history into the minibuffer."
1274 (interactive "p")
1275 (isearch-ring-advance-edit (- n)))
1276
1277 ;;(defun isearch-ring-adjust-edit (advance)
1278 ;; "Use the next or previous search string in the ring while in minibuffer."
1279 ;; (isearch-ring-adjust1 advance)
1280 ;; (erase-buffer)
1281 ;; (insert isearch-string))
1282
1283 ;;(defun isearch-ring-advance-edit ()
1284 ;; (interactive)
1285 ;; (isearch-ring-adjust-edit 'advance))
1286
1287 ;;(defun isearch-ring-retreat-edit ()
1288 ;; "Retreat to the previous search string in the ring while in the minibuffer."
1289 ;; (interactive)
1290 ;; (isearch-ring-adjust-edit nil))
1291
1292
1293 (defun isearch-complete1 ()
1294 ;; Helper for isearch-complete and isearch-complete-edit
1295 ;; Return t if completion OK, nil if no completion exists.
1296 (let* ((ring (if isearch-regexp regexp-search-ring search-ring))
1297 (alist (mapcar (function (lambda (string) (list string))) ring))
1298 (completion-ignore-case case-fold-search)
1299 (completion (try-completion isearch-string alist)))
1300 (cond
1301 ((eq completion t)
1302 ;; isearch-string stays the same
1303 t)
1304 ((or completion ; not nil, must be a string
1305 (= 0 (length isearch-string))) ; shouldn't have to say this
1306 (if (equal completion isearch-string) ;; no extension?
1307 (progn
1308 (if completion-auto-help
1309 (with-output-to-temp-buffer "*Isearch completions*"
1310 (display-completion-list
1311 (all-completions isearch-string alist))))
1312 t)
1313 (and completion
1314 (setq isearch-string completion))))
1315 (t
1316 (message "No completion") ; waits a second if in minibuffer
1317 nil))))
1318
1319 (defun isearch-complete ()
1320 "Complete the search string from the strings on the search ring.
1321 The completed string is then editable in the minibuffer.
1322 If there is no completion possible, say so and continue searching."
1323 (interactive)
1324 (if (isearch-complete1)
1325 (isearch-edit-string)
1326 ;; else
1327 (sit-for 1)
1328 (isearch-update)))
1329
1330 (defun isearch-complete-edit ()
1331 "Same as `isearch-complete' except in the minibuffer."
1332 (interactive)
1333 (setq isearch-string (buffer-string))
1334 (if (isearch-complete1)
1335 (progn
1336 (erase-buffer)
1337 (insert isearch-string))))
1338
1339 \f
1340 ;; The search status stack (and isearch window-local variables, not used).
1341 ;; Need a structure for this.
1342
1343 (defun isearch-top-state ()
1344 (let ((cmd (car isearch-cmds)))
1345 (setq isearch-string (car cmd)
1346 isearch-message (car (cdr cmd))
1347 isearch-success (nth 3 cmd)
1348 isearch-forward (nth 4 cmd)
1349 isearch-other-end (nth 5 cmd)
1350 isearch-word (nth 6 cmd)
1351 isearch-invalid-regexp (nth 7 cmd)
1352 isearch-wrapped (nth 8 cmd)
1353 isearch-barrier (nth 9 cmd)
1354 isearch-within-brackets (nth 10 cmd)
1355 isearch-case-fold-search (nth 11 cmd))
1356 (goto-char (car (cdr (cdr cmd))))))
1357
1358 (defun isearch-pop-state ()
1359 (setq isearch-cmds (cdr isearch-cmds))
1360 (isearch-top-state)
1361 )
1362
1363 (defun isearch-push-state ()
1364 (setq isearch-cmds
1365 (cons (list isearch-string isearch-message (point)
1366 isearch-success isearch-forward isearch-other-end
1367 isearch-word
1368 isearch-invalid-regexp isearch-wrapped isearch-barrier
1369 isearch-within-brackets isearch-case-fold-search)
1370 isearch-cmds)))
1371
1372 \f
1373 ;; Message string
1374
1375 (defun isearch-message (&optional c-q-hack ellipsis)
1376 ;; Generate and print the message string.
1377 (let ((cursor-in-echo-area ellipsis)
1378 (m (concat
1379 (isearch-message-prefix c-q-hack ellipsis isearch-nonincremental)
1380 isearch-message
1381 (isearch-message-suffix c-q-hack ellipsis)
1382 )))
1383 (if c-q-hack
1384 m
1385 (let ((message-log-max nil))
1386 (message "%s" m)))))
1387
1388 (defun isearch-message-prefix (&optional c-q-hack ellipsis nonincremental)
1389 ;; If about to search, and previous search regexp was invalid,
1390 ;; check that it still is. If it is valid now,
1391 ;; let the message we display while searching say that it is valid.
1392 (and isearch-invalid-regexp ellipsis
1393 (condition-case ()
1394 (progn (re-search-forward isearch-string (point) t)
1395 (setq isearch-invalid-regexp nil
1396 isearch-within-brackets nil))
1397 (error nil)))
1398 ;; If currently failing, display no ellipsis.
1399 (or isearch-success (setq ellipsis nil))
1400 (let ((m (concat (if isearch-success "" "failing ")
1401 (if (and isearch-wrapped
1402 (if isearch-forward
1403 (> (point) isearch-opoint)
1404 (< (point) isearch-opoint)))
1405 "over")
1406 (if isearch-wrapped "wrapped ")
1407 (if isearch-word "word " "")
1408 (if isearch-regexp "regexp " "")
1409 (if nonincremental "search" "I-search")
1410 (if isearch-forward "" " backward")
1411 (if isearch-multibyte-characters-flag
1412 (concat " [" default-input-method-title "]: ")
1413 ": ")
1414 )))
1415 (aset m 0 (upcase (aref m 0)))
1416 m))
1417
1418
1419 (defun isearch-message-suffix (&optional c-q-hack ellipsis)
1420 (concat (if c-q-hack "^Q" "")
1421 (if isearch-invalid-regexp
1422 (concat " [" isearch-invalid-regexp "]")
1423 "")))
1424
1425 \f
1426 ;;; Searching
1427
1428 (defun isearch-search ()
1429 ;; Do the search with the current search string.
1430 (isearch-message nil t)
1431 (if (and (eq isearch-case-fold-search t) search-upper-case)
1432 (setq isearch-case-fold-search
1433 (isearch-no-upper-case-p isearch-string isearch-regexp)))
1434 (condition-case lossage
1435 (let ((inhibit-quit nil)
1436 (case-fold-search isearch-case-fold-search)
1437 (retry t))
1438 (if isearch-regexp (setq isearch-invalid-regexp nil))
1439 (setq isearch-within-brackets nil)
1440 (while retry
1441 (setq isearch-success
1442 (funcall
1443 (cond (isearch-word
1444 (if isearch-forward
1445 'word-search-forward 'word-search-backward))
1446 (isearch-regexp
1447 (if isearch-forward
1448 're-search-forward 're-search-backward))
1449 (t
1450 (if isearch-forward 'search-forward 'search-backward)))
1451 isearch-string nil t))
1452 ;; Clear RETRY unless we matched some invisible text
1453 ;; and we aren't supposed to do that.
1454 (if (or (eq search-invisible t)
1455 (not isearch-success)
1456 (bobp) (eobp)
1457 (= (match-beginning 0) (match-end 0))
1458 (not (isearch-range-invisible
1459 (match-beginning 0) (match-end 0))))
1460 (setq retry nil)))
1461 (setq isearch-just-started nil)
1462 (if isearch-success
1463 (setq isearch-other-end
1464 (if isearch-forward (match-beginning 0) (match-end 0)))))
1465
1466 (quit (isearch-unread ?\C-g)
1467 (setq isearch-success nil))
1468
1469 (invalid-regexp
1470 (setq isearch-invalid-regexp (car (cdr lossage)))
1471 (setq isearch-within-brackets (string-match "\\`Unmatched \\["
1472 isearch-invalid-regexp))
1473 (if (string-match
1474 "\\`Premature \\|\\`Unmatched \\|\\`Invalid "
1475 isearch-invalid-regexp)
1476 (setq isearch-invalid-regexp "incomplete input")))
1477 (error
1478 ;; stack overflow in regexp search.
1479 (setq isearch-invalid-regexp (car (cdr lossage)))))
1480
1481 (if isearch-success
1482 nil
1483 ;; Ding if failed this time after succeeding last time.
1484 (and (nth 3 (car isearch-cmds))
1485 (ding))
1486 (goto-char (nth 2 (car isearch-cmds)))))
1487
1488
1489 ;;; Called when opening an overlay, and we are still in isearch.
1490 (defun isearch-open-overlay-temporary (ov)
1491 (message "temporary called")
1492 (if (not (null (overlay-get ov 'isearch-open-invisible-temporary)))
1493 ;; Some modes would want to open the overlays temporary during
1494 ;; isearch in their own way, they should set the
1495 ;; `isearch-open-invisible-temporary' to a function doing this.
1496 (funcall (overlay-get ov 'isearch-open-invisible-temporary) ov nil)
1497 ;; Store the values for the `invisible' and `intangible'
1498 ;; properties, and then set them to nil. This way the text hidden
1499 ;; by this overlay becomes visible.
1500
1501 ;; Do we realy need to set the `intangible' property to t? Can we
1502 ;; have the point inside an overlay with an `intangible' property?
1503 ;; In 19.34 this does not exist so I cannot test it.
1504 (overlay-put ov 'isearch-invisible (overlay-get ov 'invisible))
1505 (overlay-put ov 'isearch-intangible (overlay-get ov 'intangible))
1506 (overlay-put ov 'invisible nil)
1507 (overlay-put ov 'intangible nil)))
1508
1509
1510 ;;; This is called at the end of isearch. I will open the overlays
1511 ;;; that contain the latest match. Obviously in case of a C-g the
1512 ;;; point returns to the original location which surely is not contain
1513 ;;; in any of these overlays, se we are safe in this case too.
1514 (defun isearch-open-necessary-overlays (ov)
1515 (let ((inside-overlay (and (> (point) (overlay-start ov))
1516 (< (point) (overlay-end ov))))
1517 ;; If this exists it means that the overlay was opened using
1518 ;; this function, not by us tweaking the overlay properties.
1519 (fct-temp (overlay-get ov 'isearch-open-invisible-temporary)))
1520 (when (or inside-overlay (not fct-temp))
1521 ;; restore the values for the `invisible' and `intangible'
1522 ;; properties
1523 (overlay-put ov 'invisible (overlay-get ov 'isearch-invisible))
1524 (overlay-put ov 'intangible (overlay-get ov 'isearch-intangible))
1525 (overlay-put ov 'isearch-invisible nil)
1526 (overlay-put ov 'isearch-intangible nil))
1527 (if inside-overlay
1528 (funcall (overlay-get ov 'isearch-open-invisible) ov)
1529 (if fct-temp
1530 (funcall fct-temp ov t)))))
1531
1532 ;;; This is called when exiting isearch. It closes the temporary
1533 ;;; opened overlays, except the ones that contain the latest match.
1534 (defun isearch-clean-overlays ()
1535 (when isearch-opened-overlays
1536 ;; Use a cycle instead of a mapcar here?
1537 (mapcar
1538 (function isearch-open-necessary-overlays) isearch-opened-overlays)
1539 (setq isearch-opened-overlays nil)))
1540
1541 ;;; Verify if the current match is outside of each element of
1542 ;;; `isearch-opened-overlays', if so close that overlay.
1543 (defun isearch-close-unecessary-overlays (begin end)
1544 (let ((ov-list isearch-opened-overlays)
1545 ov
1546 inside-overlay
1547 fct-temp)
1548 (setq isearch-opened-overlays nil)
1549 (while ov-list
1550 (setq ov (car ov-list))
1551 (setq ov-list (cdr ov-list))
1552 (setq inside-overlay (or (and (> begin (overlay-start ov))
1553 (< begin (overlay-end ov)))
1554 (and (> end (overlay-start ov))
1555 (< end (overlay-end ov)))))
1556 ;; If this exists it means that the overlay was opened using
1557 ;; this function, not by us tweaking the overlay properties.
1558 (setq fct-temp (overlay-get ov 'isearch-open-invisible-temporary))
1559 (if inside-overlay
1560 (setq isearch-opened-overlays (cons ov isearch-opened-overlays))
1561 (if fct-temp
1562 (funcall fct-temp ov t)
1563 (overlay-put ov 'invisible (overlay-get ov 'isearch-invisible))
1564 (overlay-put ov 'intangible (overlay-get ov 'isearch-intangible))
1565 (overlay-put ov 'isearch-invisible nil)
1566 (overlay-put ov 'isearch-intangible nil))))))
1567
1568 (defun isearch-range-invisible (beg end)
1569 "Return t if all the bext from BEG to END is invisible."
1570 (and (/= beg end)
1571 ;; Check that invisibility runs up to END.
1572 (save-excursion
1573 (goto-char beg)
1574 (let
1575 ;; can-be-opened keeps track if we can open some overlays.
1576 ((can-be-opened (eq search-invisible 'open))
1577 ;; the list of overlays that could be opened
1578 (crt-overlays nil))
1579 (when (and can-be-opened isearch-hide-immediately)
1580 (isearch-close-unecessary-overlays beg end))
1581 ;; If the following character is currently invisible,
1582 ;; skip all characters with that same `invisible' property value.
1583 ;; Do that over and over.
1584 (while (and (< (point) end)
1585 (let ((prop
1586 (get-char-property (point) 'invisible)))
1587 (if (eq buffer-invisibility-spec t)
1588 prop
1589 (or (memq prop buffer-invisibility-spec)
1590 (assq prop buffer-invisibility-spec)))))
1591 (if (get-text-property (point) 'invisible)
1592 (progn
1593 (goto-char (next-single-property-change (point) 'invisible
1594 nil end))
1595 ;; if text is hidden by an `invisible' text property
1596 ;; we cannot open it at all.
1597 (setq can-be-opened nil))
1598 (unless (null can-be-opened)
1599 (let ((overlays (overlays-at (point)))
1600 ov-list
1601 o
1602 invis-prop)
1603 (while overlays
1604 (setq o (car overlays)
1605 invis-prop (overlay-get o 'invisible))
1606 (if (or (memq invis-prop buffer-invisibility-spec)
1607 (assq invis-prop buffer-invisibility-spec))
1608 (if (overlay-get o 'isearch-open-invisible)
1609 (setq ov-list (cons o ov-list))
1610 ;; We found one overlay that cannot be
1611 ;; opened, that means the whole chunk
1612 ;; cannot be opened.
1613 (setq can-be-opened nil)))
1614 (setq overlays (cdr overlays)))
1615 (if can-be-opened
1616 ;; It makes sense to append to the open
1617 ;; overlays list only if we know that this is
1618 ;; t.
1619 (setq crt-overlays (append ov-list crt-overlays))))
1620 (goto-char (next-overlay-change (point))))))
1621 ;; See if invisibility reaches up thru END.
1622 (if (>= (point) end)
1623 (if (and (not (null can-be-opened)) (consp crt-overlays))
1624 (progn
1625 (setq isearch-opened-overlays
1626 (append isearch-opened-overlays crt-overlays))
1627 ;; maybe use a cycle instead of mapcar?
1628 (mapcar (function isearch-open-overlay-temporary)
1629 crt-overlays)
1630 nil)
1631 t))))))
1632
1633 \f
1634 ;;; Highlighting
1635
1636 (defvar isearch-overlay nil)
1637
1638 (defun isearch-highlight (beg end)
1639 (if (or (null search-highlight) (null window-system))
1640 nil
1641 (or isearch-overlay (setq isearch-overlay (make-overlay beg end)))
1642 (move-overlay isearch-overlay beg end (current-buffer))
1643 (overlay-put isearch-overlay 'face
1644 (if (internal-find-face 'isearch nil)
1645 'isearch 'region))))
1646
1647 (defun isearch-dehighlight (totally)
1648 (if isearch-overlay
1649 (delete-overlay isearch-overlay)))
1650
1651 ;;; General utilities
1652
1653
1654 (defun isearch-no-upper-case-p (string regexp-flag)
1655 "Return t if there are no upper case chars in STRING.
1656 If REGEXP-FLAG is non-nil, disregard letters preceded by `\\' (but not `\\\\')
1657 since they have special meaning in a regexp."
1658 (let (quote-flag (i 0) (len (length string)) found)
1659 (while (and (not found) (< i len))
1660 (let ((char (aref string i)))
1661 (if (and regexp-flag (eq char ?\\))
1662 (setq quote-flag (not quote-flag))
1663 (if (and (not quote-flag) (not (eq char (downcase char))))
1664 (setq found t))))
1665 (setq i (1+ i)))
1666 (not found)))
1667
1668 ;; Portability functions to support various Emacs versions.
1669
1670 (defun isearch-char-to-string (c)
1671 (make-string 1 c))
1672
1673 (defun isearch-text-char-description (c)
1674 (if (and (integerp c) (or (< c ?\ ) (= c ?\^?)))
1675 (text-char-description c)
1676 (isearch-char-to-string c)))
1677
1678 ;; General function to unread characters or events.
1679 ;; Also insert them in a keyboard macro being defined.
1680 (defun isearch-unread (&rest char-or-events)
1681 (mapcar 'store-kbd-macro-event char-or-events)
1682 (setq unread-command-events
1683 (append char-or-events unread-command-events)))
1684
1685 (defun isearch-last-command-char ()
1686 ;; General function to return the last command character.
1687 last-command-char)
1688
1689 ;;; isearch.el ends here