(mouse-buffer-menu): Group buffers by major modes if that seems to be useful.
[bpt/emacs.git] / lisp / isearch.el
1 ;;; isearch.el --- incremental search minor mode.
2
3 ;; Copyright (C) 1992, 1993, 1994, 1995 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 (defvar search-exit-option t
109 "*Non-nil means random control characters terminate incremental search.")
110
111 (defvar search-slow-window-lines 1
112 "*Number of lines in slow search display windows.
113 These are the short windows used during incremental search on slow terminals.
114 Negative means put the slow search window at the top (normally it's at bottom)
115 and the value is minus the number of lines.")
116
117 (defvar search-slow-speed 1200
118 "*Highest terminal speed at which to use \"slow\" style incremental search.
119 This is the style where a one-line window is created to show the line
120 that the search has reached.")
121
122 (defvar search-upper-case 'not-yanks
123 "*If non-nil, upper case chars disable case fold searching.
124 That is, upper and lower case chars must match exactly.
125 This applies no matter where the chars come from, but does not
126 apply to chars in regexps that are prefixed with `\\'.
127 If this value is `not-yanks', yanked text is always downcased.")
128
129 (defvar search-nonincremental-instead t
130 "*If non-nil, do a nonincremental search instead if exiting immediately.
131 Actually, `isearch-edit-string' is called to let you enter the search
132 string, and RET terminates editing and does a nonincremental search.")
133
134 (defvar search-whitespace-regexp "\\s-+"
135 "*If non-nil, regular expression to match a sequence of whitespace chars.
136 You might want to use something like \"[ \\t\\r\\n]+\" instead.")
137
138 (defvar search-highlight nil
139 "*Non-nil means incremental search highlights the current match.")
140
141 (defvar isearch-mode-hook nil
142 "Function(s) to call after starting up an incremental search.")
143
144 (defvar isearch-mode-end-hook nil
145 "Function(s) to call after terminating an incremental search.")
146
147 ;;; Search ring.
148
149 (defvar search-ring nil
150 "List of search string sequences.")
151 (defvar regexp-search-ring nil
152 "List of regular expression search string sequences.")
153
154 (defvar search-ring-max 16
155 "*Maximum length of search ring before oldest elements are thrown away.")
156 (defvar regexp-search-ring-max 16
157 "*Maximum length of regexp search ring before oldest elements are thrown away.")
158
159 (defvar search-ring-yank-pointer nil
160 "Index in `search-ring' of last string reused.
161 nil if none yet.")
162 (defvar regexp-search-ring-yank-pointer nil
163 "Index in `regexp-search-ring' of last string reused.
164 nil if none yet.")
165
166 (defvar search-ring-update nil
167 "*Non-nil if advancing or retreating in the search ring should cause search.
168 Default value, nil, means edit the string instead.")
169
170 ;;; Define isearch-mode keymap.
171
172 (defvar isearch-mode-map nil
173 "Keymap for isearch-mode.")
174
175 (or isearch-mode-map
176 (let* ((i 0)
177 (map (make-keymap)))
178 (or (vectorp (nth 1 map))
179 (error "The initialization of isearch-mode-map must be updated"))
180 ;; Give this map a vector 256 long, for dense binding
181 ;; of a larger range of ordinary characters.
182 (setcar (cdr map) (make-vector 256 nil))
183
184 ;; Make function keys, etc, exit the search.
185 (define-key map [t] 'isearch-other-control-char)
186 ;; Control chars, by default, end isearch mode transparently.
187 ;; We need these explicit definitions because, in a dense keymap,
188 ;; the binding for t does not affect characters.
189 ;; We use a dense keymap to save space.
190 (while (< i ?\ )
191 (define-key map (make-string 1 i) 'isearch-other-control-char)
192 (setq i (1+ i)))
193
194 ;; Printing chars extend the search string by default.
195 (setq i ?\ )
196 (while (< i (length (nth 1 map)))
197 (define-key map (vector i) 'isearch-printing-char)
198 (setq i (1+ i)))
199
200 ;; To handle local bindings with meta char prefix keys, define
201 ;; another full keymap. This must be done for any other prefix
202 ;; keys as well, one full keymap per char of the prefix key. It
203 ;; would be simpler to disable the global keymap, and/or have a
204 ;; default local key binding for any key not otherwise bound.
205 (let ((meta-map (make-sparse-keymap)))
206 (define-key map (char-to-string meta-prefix-char) meta-map)
207 (define-key map [escape] meta-map))
208 (define-key map (vector meta-prefix-char t) 'isearch-other-meta-char)
209
210 ;; Several non-printing chars change the searching behavior.
211 (define-key map "\C-s" 'isearch-repeat-forward)
212 (define-key map "\C-r" 'isearch-repeat-backward)
213 (define-key map "\177" 'isearch-delete-char)
214 (define-key map "\C-g" 'isearch-abort)
215 ;; This assumes \e is the meta-prefix-char.
216 (or (= ?\e meta-prefix-char)
217 (error "Inconsistency in isearch.el"))
218 (define-key map "\e\e\e" 'isearch-cancel)
219 (define-key map [escape escape escape] 'isearch-cancel)
220
221 (define-key map "\C-q" 'isearch-quote-char)
222
223 (define-key map "\r" 'isearch-exit)
224 (define-key map "\C-j" 'isearch-printing-char)
225 (define-key map "\t" 'isearch-printing-char)
226 (define-key map " " 'isearch-whitespace-chars)
227
228 (define-key map "\C-w" 'isearch-yank-word)
229 (define-key map "\C-y" 'isearch-yank-line)
230
231 ;; Define keys for regexp chars * ? |.
232 ;; Nothing special for + because it matches at least once.
233 (define-key map "*" 'isearch-*-char)
234 (define-key map "?" 'isearch-*-char)
235 (define-key map "|" 'isearch-|-char)
236
237 ;;; Turned off because I find I expect to get the global definition--rms.
238 ;;; ;; Instead bind C-h to special help command for isearch-mode.
239 ;;; (define-key map "\C-h" 'isearch-mode-help)
240
241 (define-key map "\M-n" 'isearch-ring-advance)
242 (define-key map "\M-p" 'isearch-ring-retreat)
243 (define-key map "\M-y" 'isearch-yank-kill)
244
245 (define-key map "\M-\t" 'isearch-complete)
246
247 ;; Pass frame events transparently so they won't exit the search.
248 ;; In particular, if we have more than one display open, then a
249 ;; switch-frame might be generated by someone typing at another keyboard.
250 (define-key map [switch-frame] nil)
251 (define-key map [delete-frame] nil)
252 (define-key map [iconify-frame] nil)
253 (define-key map [make-frame-visible] nil)
254
255 (setq isearch-mode-map map)
256 ))
257
258 ;; Some bindings you may want to put in your isearch-mode-hook.
259 ;; Suggest some alternates...
260 ;; (define-key isearch-mode-map "\C-t" 'isearch-toggle-case-fold)
261 ;; (define-key isearch-mode-map "\C-t" 'isearch-toggle-regexp)
262 ;; (define-key isearch-mode-map "\C-^" 'isearch-edit-string)
263
264
265 (defvar minibuffer-local-isearch-map nil
266 "Keymap for editing isearch strings in the minibuffer.")
267
268 (or minibuffer-local-isearch-map
269 (let ((map (copy-keymap minibuffer-local-map)))
270 (define-key map "\r" 'isearch-nonincremental-exit-minibuffer)
271 (define-key map "\M-n" 'isearch-ring-advance-edit)
272 (define-key map "\M-p" 'isearch-ring-retreat-edit)
273 (define-key map "\M-\t" 'isearch-complete-edit)
274 (define-key map "\C-s" 'isearch-forward-exit-minibuffer)
275 (define-key map "\C-r" 'isearch-reverse-exit-minibuffer)
276 (setq minibuffer-local-isearch-map map)
277 ))
278
279 ;; Internal variables declared globally for byte-compiler.
280 ;; These are all set with setq while isearching
281 ;; and bound locally while editing the search string.
282
283 (defvar isearch-forward nil) ; Searching in the forward direction.
284 (defvar isearch-regexp nil) ; Searching for a regexp.
285 (defvar isearch-word nil) ; Searching for words.
286
287 (defvar isearch-cmds nil) ; Stack of search status sets.
288 (defvar isearch-string "") ; The current search string.
289 (defvar isearch-message "") ; text-char-description version of isearch-string
290
291 (defvar isearch-success t) ; Searching is currently successful.
292 (defvar isearch-invalid-regexp nil) ; Regexp not well formed.
293 (defvar isearch-within-brackets nil) ; Regexp has unclosed [.
294 (defvar isearch-other-end nil) ; Start (end) of match if forward (backward).
295 (defvar isearch-wrapped nil) ; Searching restarted from the top (bottom).
296 (defvar isearch-barrier 0)
297 (defvar isearch-just-started nil)
298
299 ; case-fold-search while searching.
300 ; either nil, t, or 'yes. 'yes means the same as t except that mixed
301 ; case in the search string is ignored.
302 (defvar isearch-case-fold-search nil)
303
304 (defvar isearch-adjusted nil)
305 (defvar isearch-slow-terminal-mode nil)
306 ;;; If t, using a small window.
307 (defvar isearch-small-window nil)
308 (defvar isearch-opoint 0)
309 ;;; The window configuration active at the beginning of the search.
310 (defvar isearch-window-configuration nil)
311
312 ;; Flag to indicate a yank occurred, so don't move the cursor.
313 (defvar isearch-yank-flag nil)
314
315 ;;; A function to be called after each input character is processed.
316 ;;; (It is not called after characters that exit the search.)
317 ;;; It is only set from an optional argument to `isearch-mode'.
318 (defvar isearch-op-fun nil)
319
320 ;;; Is isearch-mode in a recursive edit for modal searching.
321 (defvar isearch-recursive-edit nil)
322
323 ;;; Should isearch be terminated after doing one search?
324 (defvar isearch-nonincremental nil)
325
326 ;; New value of isearch-forward after isearch-edit-string.
327 (defvar isearch-new-forward nil)
328
329
330 ;; Minor-mode-alist changes - kind of redundant with the
331 ;; echo area, but if isearching in multiple windows, it can be useful.
332
333 (or (assq 'isearch-mode minor-mode-alist)
334 (nconc minor-mode-alist
335 (list '(isearch-mode isearch-mode))))
336
337 (defvar isearch-mode nil) ;; Name of the minor mode, if non-nil.
338 (make-variable-buffer-local 'isearch-mode)
339
340 (define-key global-map "\C-s" 'isearch-forward)
341 (define-key esc-map "\C-s" 'isearch-forward-regexp)
342 (define-key global-map "\C-r" 'isearch-backward)
343 (define-key esc-map "\C-r" 'isearch-backward-regexp)
344
345 ;;; Entry points to isearch-mode.
346 ;;; These four functions should replace those in loaddefs.el
347 ;;; An alternative is to defalias isearch-forward etc to isearch-mode,
348 ;;; and look at this-command to set the options accordingly.
349
350 (defun isearch-forward (&optional regexp-p no-recursive-edit)
351 "\
352 Do incremental search forward.
353 With a prefix argument, do an incremental regular expression search instead.
354 \\<isearch-mode-map>
355 As you type characters, they add to the search string and are found.
356 The following non-printing keys are bound in `isearch-mode-map'.
357
358 Type \\[isearch-delete-char] to cancel characters from end of search string.
359 Type \\[isearch-exit] to exit, leaving point at location found.
360 Type LFD (C-j) to match end of line.
361 Type \\[isearch-repeat-forward] to search again forward,\
362 \\[isearch-repeat-backward] to search again backward.
363 Type \\[isearch-yank-word] to yank word from buffer onto end of search\
364 string and search for it.
365 Type \\[isearch-yank-line] to yank rest of line onto end of search string\
366 and search for it.
367 Type \\[isearch-yank-kill] to yank the last string of killed text.
368 Type \\[isearch-quote-char] to quote control character to search for it.
369 \\[isearch-abort] while searching or when search has failed cancels input\
370 back to what has
371 been found successfully.
372 \\[isearch-abort] when search is successful aborts and moves point to\
373 starting point.
374
375 Also supported is a search ring of the previous 16 search strings.
376 Type \\[isearch-ring-advance] to search for the next item in the search ring.
377 Type \\[isearch-ring-retreat] to search for the previous item in the search\
378 ring.
379 Type \\[isearch-complete] to complete the search string using the search ring.
380
381 The above keys, bound in `isearch-mode-map', are often controlled by
382 options; do M-x apropos on search-.* to find them.
383 Other control and meta characters terminate the search
384 and are then executed normally (depending on `search-exit-option').
385 Likewise for function keys and mouse button events.
386
387 If this function is called non-interactively, it does not return to
388 the calling function until the search is done."
389
390 (interactive "P\np")
391 (isearch-mode t (not (null regexp-p)) nil (not no-recursive-edit)))
392
393 (defun isearch-forward-regexp (&optional not-regexp no-recursive-edit)
394 "\
395 Do incremental search forward for regular expression.
396 With a prefix argument, do a regular string search instead.
397 Like ordinary incremental search except that your input
398 is treated as a regexp. See \\[isearch-forward] for more info."
399 (interactive "P\np")
400 (isearch-mode t (null not-regexp) nil (not no-recursive-edit)))
401
402 (defun isearch-backward (&optional regexp-p no-recursive-edit)
403 "\
404 Do incremental search backward.
405 With a prefix argument, do a regular expression search instead.
406 See \\[isearch-forward] for more information."
407 (interactive "P\np")
408 (isearch-mode nil (not (null regexp-p)) nil (not no-recursive-edit)))
409
410 (defun isearch-backward-regexp (&optional not-regexp no-recursive-edit)
411 "\
412 Do incremental search backward for regular expression.
413 With a prefix argument, do a regular string search instead.
414 Like ordinary incremental search except that your input
415 is treated as a regexp. See \\[isearch-forward] for more info."
416 (interactive "P\np")
417 (isearch-mode nil (null not-regexp) nil (not no-recursive-edit)))
418
419
420 (defun isearch-mode-help ()
421 (interactive)
422 (describe-function 'isearch-forward)
423 (isearch-update))
424
425 \f
426 ;; isearch-mode only sets up incremental search for the minor mode.
427 ;; All the work is done by the isearch-mode commands.
428
429 ;; Not used yet:
430 ;;(defvar isearch-commands '(isearch-forward isearch-backward
431 ;; isearch-forward-regexp isearch-backward-regexp)
432 ;; "List of commands for which isearch-mode does not recursive-edit.")
433
434
435 (defun isearch-mode (forward &optional regexp op-fun recursive-edit word-p)
436 "Start isearch minor mode. Called by `isearch-forward', etc.
437
438 \\{isearch-mode-map}"
439
440 ;; Initialize global vars.
441 (setq isearch-forward forward
442 isearch-regexp regexp
443 isearch-word word-p
444 isearch-op-fun op-fun
445 isearch-case-fold-search case-fold-search
446 isearch-string ""
447 isearch-message ""
448 isearch-cmds nil
449 isearch-success t
450 isearch-wrapped nil
451 isearch-barrier (point)
452 isearch-adjusted nil
453 isearch-yank-flag nil
454 isearch-invalid-regexp nil
455 isearch-within-brackets nil
456 isearch-slow-terminal-mode (and (<= baud-rate search-slow-speed)
457 (> (window-height)
458 (* 4 search-slow-window-lines)))
459 isearch-other-end nil
460 isearch-small-window nil
461 isearch-just-started t
462
463 isearch-opoint (point)
464 search-ring-yank-pointer nil
465 regexp-search-ring-yank-pointer nil)
466 (looking-at "")
467 (setq isearch-window-configuration
468 (if isearch-slow-terminal-mode (current-window-configuration) nil))
469
470 ;; Maybe make minibuffer frame visible and/or raise it.
471 (let ((frame (window-frame (minibuffer-window))))
472 (if (not (memq (frame-live-p frame) '(nil t)))
473 (progn
474 (make-frame-visible frame)
475 (if minibuffer-auto-raise
476 (raise-frame frame)))))
477
478 (setq isearch-mode " Isearch") ;; forward? regexp?
479 (force-mode-line-update)
480
481 (isearch-push-state)
482
483 (setq overriding-terminal-local-map isearch-mode-map)
484 (isearch-update)
485 (run-hooks 'isearch-mode-hook)
486
487 (add-hook 'mouse-leave-buffer-hook 'isearch-done)
488
489 ;; isearch-mode can be made modal (in the sense of not returning to
490 ;; the calling function until searching is completed) by entering
491 ;; a recursive-edit and exiting it when done isearching.
492 (if recursive-edit
493 (let ((isearch-recursive-edit t))
494 (recursive-edit)))
495 isearch-success)
496
497
498 ;; Some high level utilities. Others below.
499
500 (defun isearch-update ()
501 ;; Called after each command to update the display.
502 (if (null unread-command-events)
503 (progn
504 (if (not (input-pending-p))
505 (isearch-message))
506 (if (and isearch-slow-terminal-mode
507 (not (or isearch-small-window
508 (pos-visible-in-window-p))))
509 (let ((found-point (point)))
510 (setq isearch-small-window t)
511 (move-to-window-line 0)
512 (let ((window-min-height 1))
513 (split-window nil (if (< search-slow-window-lines 0)
514 (1+ (- search-slow-window-lines))
515 (- (window-height)
516 (1+ search-slow-window-lines)))))
517 (if (< search-slow-window-lines 0)
518 (progn (vertical-motion (- 1 search-slow-window-lines))
519 (set-window-start (next-window) (point))
520 (set-window-hscroll (next-window)
521 (window-hscroll))
522 (set-window-hscroll (selected-window) 0))
523 (other-window 1))
524 (goto-char found-point)))
525 (if isearch-other-end
526 (if (< isearch-other-end (point)) ; isearch-forward?
527 (isearch-highlight isearch-other-end (point))
528 (isearch-highlight (point) isearch-other-end))
529 (isearch-dehighlight nil))
530 ))
531 (setq ;; quit-flag nil not for isearch-mode
532 isearch-adjusted nil
533 isearch-yank-flag nil)
534 )
535
536 (defun isearch-done (&optional nopush edit)
537 (remove-hook 'mouse-leave-buffer-hook 'isearch-done)
538 ;; Called by all commands that terminate isearch-mode.
539 ;; If NOPUSH is non-nil, we don't push the string on the search ring.
540 (setq overriding-terminal-local-map nil)
541 ;; (setq pre-command-hook isearch-old-pre-command-hook) ; for lemacs
542 (isearch-dehighlight t)
543 (let ((found-start (window-start (selected-window)))
544 (found-point (point)))
545 (if isearch-window-configuration
546 (set-window-configuration isearch-window-configuration))
547
548 (if isearch-small-window
549 (goto-char found-point)
550 ;; Exiting the save-window-excursion clobbers window-start; restore it.
551 (set-window-start (selected-window) found-start t))
552
553 ;; If there was movement, mark the starting position.
554 ;; Maybe should test difference between and set mark iff > threshold.
555 (if (/= (point) isearch-opoint)
556 (or (and transient-mark-mode mark-active)
557 (progn
558 (push-mark isearch-opoint t)
559 (or executing-kbd-macro (> (minibuffer-depth) 0)
560 (message "Mark saved where search started"))))))
561
562 (setq isearch-mode nil)
563 (force-mode-line-update)
564
565 (if (and (> (length isearch-string) 0) (not nopush))
566 ;; Update the ring data.
567 (isearch-update-ring isearch-string isearch-regexp))
568
569 (run-hooks 'isearch-mode-end-hook)
570 (and (not edit) isearch-recursive-edit (exit-recursive-edit)))
571
572 (defun isearch-update-ring (string &optional regexp)
573 "Add STRING to the beginning of the search ring.
574 REGEXP says which ring to use."
575 (if regexp
576 (if (or (null regexp-search-ring)
577 (not (string= string (car regexp-search-ring))))
578 (progn
579 (setq regexp-search-ring
580 (cons string regexp-search-ring))
581 (if (> (length regexp-search-ring) regexp-search-ring-max)
582 (setcdr (nthcdr (1- search-ring-max) regexp-search-ring)
583 nil))))
584 (if (or (null search-ring)
585 (not (string= string (car search-ring))))
586 (progn
587 (setq search-ring (cons string search-ring))
588 (if (> (length search-ring) search-ring-max)
589 (setcdr (nthcdr (1- search-ring-max) search-ring) nil))))))
590
591 ;;; Switching buffers should first terminate isearch-mode.
592 ;;; This is done quite differently for each variant of emacs.
593 ;;; For lemacs, see Exiting in lemacs below
594
595 ;; For Emacs 19, the frame switch event is handled.
596 (defun isearch-switch-frame-handler ()
597 (interactive) ;; Is this necessary?
598 ;; First terminate isearch-mode.
599 (isearch-done)
600 (handle-switch-frame (car (cdr (isearch-last-command-char)))))
601
602 \f
603 ;; Commands active while inside of the isearch minor mode.
604
605 (defun isearch-exit ()
606 "Exit search normally.
607 However, if this is the first command after starting incremental
608 search and `search-nonincremental-instead' is non-nil, do a
609 nonincremental search instead via `isearch-edit-string'."
610 (interactive)
611 (if (and search-nonincremental-instead
612 (= 0 (length isearch-string)))
613 (let ((isearch-nonincremental t))
614 (isearch-edit-string)))
615 (isearch-done))
616
617
618 (defun isearch-edit-string ()
619 "Edit the search string in the minibuffer.
620 The following additional command keys are active while editing.
621 \\<minibuffer-local-isearch-map>
622 \\[exit-minibuffer] to resume incremental searching with the edited string.
623 \\[isearch-nonincremental-exit-minibuffer] to do one nonincremental search.
624 \\[isearch-forward-exit-minibuffer] to resume isearching forward.
625 \\[isearch-reverse-exit-minibuffer] to resume isearching backward.
626 \\[isearch-ring-advance-edit] to replace the search string with the next item in the search ring.
627 \\[isearch-ring-retreat-edit] to replace the search string with the previous item in the search ring.
628 \\[isearch-complete-edit] to complete the search string using the search ring.
629 \\<isearch-mode-map>
630 If first char entered is \\[isearch-yank-word], then do word search instead."
631
632 ;; This code is very hairy for several reasons, explained in the code.
633 ;; Mainly, isearch-mode must be terminated while editing and then restarted.
634 ;; If there were a way to catch any change of buffer from the minibuffer,
635 ;; this could be simplified greatly.
636 ;; Editing doesn't back up the search point. Should it?
637 (interactive)
638 (condition-case err
639 (progn
640 (let ((isearch-nonincremental isearch-nonincremental)
641
642 ;; Locally bind all isearch global variables to protect them
643 ;; from recursive isearching.
644 ;; isearch-string -message and -forward are not bound
645 ;; so they may be changed. Instead, save the values.
646 (isearch-new-string isearch-string)
647 (isearch-new-message isearch-message)
648 (isearch-new-forward isearch-forward)
649 (isearch-new-word isearch-word)
650
651 (isearch-regexp isearch-regexp)
652 (isearch-op-fun isearch-op-fun)
653 (isearch-cmds isearch-cmds)
654 (isearch-success isearch-success)
655 (isearch-wrapped isearch-wrapped)
656 (isearch-barrier isearch-barrier)
657 (isearch-adjusted isearch-adjusted)
658 (isearch-yank-flag isearch-yank-flag)
659 (isearch-invalid-regexp isearch-invalid-regexp)
660 (isearch-within-brackets isearch-within-brackets)
661 ;;; Don't bind this. We want isearch-search, below, to set it.
662 ;;; And the old value won't matter after that.
663 ;;; (isearch-other-end isearch-other-end)
664 ;;; Perhaps some of these other variables should be bound for a
665 ;;; shorter period, ending before the next isearch-search.
666 ;;; But there doesn't seem to be a real bug, so let's not risk it now.
667 (isearch-opoint isearch-opoint)
668 (isearch-slow-terminal-mode isearch-slow-terminal-mode)
669 (isearch-small-window isearch-small-window)
670 (isearch-recursive-edit isearch-recursive-edit)
671 ;; Save current configuration so we can restore it here.
672 (isearch-window-configuration (current-window-configuration))
673 )
674
675 ;; Actually terminate isearching until editing is done.
676 ;; This is so that the user can do anything without failure,
677 ;; like switch buffers and start another isearch, and return.
678 (condition-case err
679 (isearch-done t t)
680 (exit nil)) ; was recursive editing
681
682 (isearch-message) ;; for read-char
683 (unwind-protect
684 (let* (;; Why does following read-char echo?
685 ;;(echo-keystrokes 0) ;; not needed with above message
686 (e (let ((cursor-in-echo-area t))
687 (read-event)))
688 ;; Binding minibuffer-history-symbol to nil is a work-around
689 ;; for some incompatibility with gmhist.
690 (minibuffer-history-symbol)
691 (message-log-max nil))
692 ;; If the first character the user types when we prompt them
693 ;; for a string is the yank-word character, then go into
694 ;; word-search mode. Otherwise unread that character and
695 ;; read a key the normal way.
696 ;; Word search does not apply (yet) to regexp searches,
697 ;; no check is made here.
698 (message (isearch-message-prefix nil nil t))
699 (if (eq 'isearch-yank-word
700 (lookup-key isearch-mode-map (vector e)))
701 (setq isearch-word t;; so message-prefix is right
702 isearch-new-word t)
703 (cancel-kbd-macro-events)
704 (isearch-unread e))
705 (setq cursor-in-echo-area nil)
706 (setq isearch-new-string
707 (let (junk-ring)
708 (read-from-minibuffer
709 (isearch-message-prefix nil nil isearch-nonincremental)
710 isearch-string
711 minibuffer-local-isearch-map nil
712 'junk-ring))
713 isearch-new-message
714 (mapconcat 'isearch-text-char-description
715 isearch-new-string "")))
716 ;; Always resume isearching by restarting it.
717 (isearch-mode isearch-forward
718 isearch-regexp
719 isearch-op-fun
720 nil
721 isearch-word)
722
723 ;; Copy new local values to isearch globals
724 (setq isearch-string isearch-new-string
725 isearch-message isearch-new-message
726 isearch-forward isearch-new-forward
727 isearch-word isearch-new-word))
728
729 ;; Empty isearch-string means use default.
730 (if (= 0 (length isearch-string))
731 (setq isearch-string (or (car (if isearch-regexp
732 regexp-search-ring
733 search-ring))
734 ""))
735 ;; This used to set the last search string,
736 ;; but I think it is not right to do that here.
737 ;; Only the string actually used should be saved.
738 ))
739
740 ;; Push the state as of before this C-s.
741 (isearch-push-state)
742
743 ;; Reinvoke the pending search.
744 (isearch-search)
745 (isearch-update)
746 (if isearch-nonincremental
747 (progn
748 ;; (sit-for 1) ;; needed if isearch-done does: (message "")
749 (isearch-done))))
750
751 (quit ; handle abort-recursive-edit
752 (isearch-abort) ;; outside of let to restore outside global values
753 )))
754
755 (defun isearch-nonincremental-exit-minibuffer ()
756 (interactive)
757 (setq isearch-nonincremental t)
758 (exit-minibuffer))
759
760 (defun isearch-forward-exit-minibuffer ()
761 (interactive)
762 (setq isearch-new-forward t)
763 (exit-minibuffer))
764
765 (defun isearch-reverse-exit-minibuffer ()
766 (interactive)
767 (setq isearch-new-forward nil)
768 (exit-minibuffer))
769
770 (defun isearch-cancel ()
771 "Terminate the search and go back to the starting point."
772 (interactive)
773 (goto-char isearch-opoint)
774 (isearch-done t)
775 (signal 'quit nil)) ; and pass on quit signal
776
777 (defun isearch-abort ()
778 "Abort incremental search mode if searching is successful, signaling quit.
779 Otherwise, revert to previous successful search and continue searching.
780 Use `isearch-exit' to quit without signaling."
781 (interactive)
782 ;; (ding) signal instead below, if quitting
783 (discard-input)
784 (if isearch-success
785 ;; If search is successful, move back to starting point
786 ;; and really do quit.
787 (progn (goto-char isearch-opoint)
788 (setq isearch-success nil)
789 (isearch-done t) ; exit isearch
790 (signal 'quit nil)) ; and pass on quit signal
791 ;; If search is failing, or has an incomplete regexp,
792 ;; rub out until it is once more successful.
793 (while (or (not isearch-success) isearch-invalid-regexp)
794 (isearch-pop-state))
795 (isearch-update)))
796
797 (defun isearch-repeat (direction)
798 ;; Utility for isearch-repeat-forward and -backward.
799 (if (eq isearch-forward (eq direction 'forward))
800 ;; C-s in forward or C-r in reverse.
801 (if (equal isearch-string "")
802 ;; If search string is empty, use last one.
803 (setq isearch-string
804 (or (if isearch-regexp
805 (car regexp-search-ring)
806 (car search-ring))
807 "")
808 isearch-message
809 (mapconcat 'isearch-text-char-description
810 isearch-string ""))
811 ;; If already have what to search for, repeat it.
812 (or isearch-success
813 (progn
814 (goto-char (if isearch-forward (point-min) (point-max)))
815 (setq isearch-wrapped t))))
816 ;; C-s in reverse or C-r in forward, change direction.
817 (setq isearch-forward (not isearch-forward)))
818
819 (setq isearch-barrier (point)) ; For subsequent \| if regexp.
820
821 (if (equal isearch-string "")
822 (setq isearch-success t)
823 (if (and isearch-success (equal (match-end 0) (match-beginning 0))
824 (not isearch-just-started))
825 ;; If repeating a search that found
826 ;; an empty string, ensure we advance.
827 (if (if isearch-forward (eobp) (bobp))
828 ;; If there's nowhere to advance to, fail (and wrap next time).
829 (progn
830 (setq isearch-success nil)
831 (ding))
832 (forward-char (if isearch-forward 1 -1))
833 (isearch-search))
834 (isearch-search)))
835
836 (isearch-push-state)
837 (isearch-update))
838
839 (defun isearch-repeat-forward ()
840 "Repeat incremental search forwards."
841 (interactive)
842 (isearch-repeat 'forward))
843
844 (defun isearch-repeat-backward ()
845 "Repeat incremental search backwards."
846 (interactive)
847 (isearch-repeat 'backward))
848
849 (defun isearch-toggle-regexp ()
850 "Toggle regexp searching on or off."
851 ;; The status stack is left unchanged.
852 (interactive)
853 (setq isearch-regexp (not isearch-regexp))
854 (if isearch-regexp (setq isearch-word nil))
855 (isearch-update))
856
857 (defun isearch-toggle-case-fold ()
858 "Toggle case folding in searching on or off."
859 (interactive)
860 (setq isearch-case-fold-search
861 (if isearch-case-fold-search nil 'yes))
862 (let ((message-log-max nil))
863 (message "%s%s [case %ssensitive]"
864 (isearch-message-prefix nil nil isearch-nonincremental)
865 isearch-message
866 (if isearch-case-fold-search "in" "")))
867 (setq isearch-adjusted t)
868 (sit-for 1)
869 (isearch-update))
870
871 (defun isearch-delete-char ()
872 "Discard last input item and move point back.
873 If no previous match was done, just beep."
874 (interactive)
875 (if (null (cdr isearch-cmds))
876 (ding)
877 (isearch-pop-state))
878 (isearch-update))
879
880
881 (defun isearch-yank (chunk)
882 ;; Helper for isearch-yank-word and isearch-yank-line
883 ;; CHUNK should be word, line or kill.
884 (let ((string (cond
885 ((eq chunk 'kill)
886 (current-kill 0))
887 (t
888 (save-excursion
889 (and (not isearch-forward) isearch-other-end
890 (goto-char isearch-other-end))
891 (buffer-substring
892 (point)
893 (save-excursion
894 (cond
895 ((eq chunk 'word)
896 (forward-word 1))
897 ((eq chunk 'line)
898 (end-of-line)))
899 (point))))))))
900 ;; Downcase the string if not supposed to case-fold yanked strings.
901 (if (and isearch-case-fold-search
902 (eq 'not-yanks search-upper-case))
903 (setq string (downcase string)))
904 (if isearch-regexp (setq string (regexp-quote string)))
905 (setq isearch-string (concat isearch-string string)
906 isearch-message
907 (concat isearch-message
908 (mapconcat 'isearch-text-char-description
909 string ""))
910 ;; Don't move cursor in reverse search.
911 isearch-yank-flag t))
912 (isearch-search-and-update))
913
914 (defun isearch-yank-kill ()
915 "Pull string from kill ring into search string."
916 (interactive)
917 (isearch-yank 'kill))
918
919 (defun isearch-yank-word ()
920 "Pull next word from buffer into search string."
921 (interactive)
922 (isearch-yank 'word))
923
924 (defun isearch-yank-line ()
925 "Pull rest of line from buffer into search string."
926 (interactive)
927 (isearch-yank 'line))
928
929
930 (defun isearch-search-and-update ()
931 ;; Do the search and update the display.
932 (if (and (not isearch-success)
933 ;; unsuccessful regexp search may become
934 ;; successful by addition of characters which
935 ;; make isearch-string valid
936 (not isearch-regexp))
937 nil
938 ;; In reverse search, adding stuff at
939 ;; the end may cause zero or many more chars to be
940 ;; matched, in the string following point.
941 ;; Allow all those possibilities without moving point as
942 ;; long as the match does not extend past search origin.
943 (if (and (not isearch-forward) (not isearch-adjusted)
944 (condition-case ()
945 (let ((case-fold-search isearch-case-fold-search))
946 (looking-at (if isearch-regexp isearch-string
947 (regexp-quote isearch-string))))
948 (error nil))
949 (or isearch-yank-flag
950 (<= (match-end 0)
951 (min isearch-opoint isearch-barrier))))
952 (setq isearch-success t
953 isearch-invalid-regexp nil
954 isearch-within-brackets nil
955 isearch-other-end (match-end 0))
956 ;; Not regexp, not reverse, or no match at point.
957 (if (and isearch-other-end (not isearch-adjusted))
958 (goto-char (if isearch-forward isearch-other-end
959 (min isearch-opoint
960 isearch-barrier
961 (1+ isearch-other-end)))))
962 (isearch-search)
963 ))
964 (isearch-push-state)
965 (if isearch-op-fun (funcall isearch-op-fun))
966 (isearch-update))
967
968
969 ;; *, ?, and | chars can make a regexp more liberal.
970 ;; They can make a regexp match sooner or make it succeed instead of failing.
971 ;; So go back to place last successful search started
972 ;; or to the last ^S/^R (barrier), whichever is nearer.
973 ;; + needs no special handling because the string must match at least once.
974
975 (defun isearch-*-char ()
976 "Handle * and ? specially in regexps."
977 (interactive)
978 (if isearch-regexp
979
980 (progn
981 (setq isearch-adjusted t)
982 ;; Get the isearch-other-end from before the last search.
983 ;; We want to start from there,
984 ;; so that we don't retreat farther than that.
985 ;; (car isearch-cmds) is after last search;
986 ;; (car (cdr isearch-cmds)) is from before it.
987 (let ((cs (nth 5 (car (cdr isearch-cmds)))))
988 (setq cs (or cs isearch-barrier))
989 (goto-char
990 (if isearch-forward
991 (max cs isearch-barrier)
992 (min cs isearch-barrier))))))
993 (isearch-process-search-char (isearch-last-command-char)))
994
995
996 (defun isearch-|-char ()
997 "If in regexp search, jump to the barrier."
998 (interactive)
999 (if isearch-regexp
1000 (progn
1001 (setq isearch-adjusted t)
1002 (goto-char isearch-barrier)))
1003 (isearch-process-search-char (isearch-last-command-char)))
1004
1005
1006 (defalias 'isearch-other-control-char 'isearch-other-meta-char)
1007
1008 (defun isearch-other-meta-char ()
1009 "Exit the search normally and reread this key sequence.
1010 But only if `search-exit-option' is non-nil, the default.
1011 If it is the symbol `edit', the search string is edited in the minibuffer
1012 and the meta character is unread so that it applies to editing the string."
1013 (interactive)
1014 (let* ((key (this-command-keys))
1015 (main-event (aref key 0))
1016 (keylist (listify-key-sequence key)))
1017 (cond ((and (= (length key) 1)
1018 (let ((lookup (lookup-key function-key-map key)))
1019 (not (or (null lookup) (integerp lookup)
1020 (keymapp lookup)))))
1021 ;; Handle a function key that translates into something else.
1022 ;; If the key has a global definition too,
1023 ;; exit and unread the key itself, so its global definition runs.
1024 ;; Otherwise, unread the translation,
1025 ;; so that the translated key takes effect within isearch.
1026 (cancel-kbd-macro-events)
1027 (if (lookup-key global-map key)
1028 (progn
1029 (isearch-done)
1030 (apply 'isearch-unread keylist))
1031 (apply 'isearch-unread
1032 (listify-key-sequence (lookup-key function-key-map key)))))
1033 (
1034 ;; Handle an undefined shifted control character
1035 ;; by downshifting it if that makes it defined.
1036 ;; (As read-key-sequence would normally do,
1037 ;; if we didn't have a default definition.)
1038 (let ((mods (event-modifiers main-event)))
1039 (and (integerp main-event)
1040 (memq 'shift mods)
1041 (memq 'control mods)
1042 (lookup-key isearch-mode-map
1043 (let ((copy (copy-sequence key)))
1044 (aset copy 0
1045 (- main-event (- ?\C-\S-a ?\C-a)))
1046 copy)
1047 nil)))
1048 (setcar keylist (- main-event (- ?\C-\S-a ?\C-a)))
1049 (cancel-kbd-macro-events)
1050 (apply 'isearch-unread keylist))
1051 ((eq search-exit-option 'edit)
1052 (apply 'isearch-unread keylist)
1053 (isearch-edit-string))
1054 (search-exit-option
1055 (let (window)
1056 (cancel-kbd-macro-events)
1057 (apply 'isearch-unread keylist)
1058 ;; Properly handle scroll-bar and mode-line clicks
1059 ;; for which a dummy prefix event was generated as (aref key 0).
1060 (and (> (length key) 1)
1061 (symbolp (aref key 0))
1062 (listp (aref key 1))
1063 (not (numberp (posn-point (event-start (aref key 1)))))
1064 ;; Convert the event back into its raw form,
1065 ;; with the dummy prefix implicit in the mouse event,
1066 ;; so it will get split up once again.
1067 (progn (setq unread-command-events
1068 (cdr unread-command-events))
1069 (setq main-event (car unread-command-events))
1070 (setcar (cdr (event-start main-event))
1071 (car (nth 1 (event-start main-event))))))
1072 ;; If we got a mouse click, maybe it was read with the buffer
1073 ;; it was clicked on. If so, that buffer, not the current one,
1074 ;; is in isearch mode. So end the search in that buffer.
1075 (if (and (listp main-event)
1076 (setq window (posn-window (event-start main-event)))
1077 (windowp window))
1078 (save-excursion
1079 (set-buffer (window-buffer window))
1080 (isearch-done))
1081 (isearch-done))))
1082 (t;; otherwise nil
1083 (isearch-process-search-string key key)))))
1084
1085 (defun isearch-quote-char ()
1086 "Quote special characters for incremental search."
1087 (interactive)
1088 (isearch-process-search-char (read-quoted-char (isearch-message t))))
1089
1090 (defun isearch-return-char ()
1091 "Convert return into newline for incremental search.
1092 Obsolete."
1093 (interactive)
1094 (isearch-process-search-char ?\n))
1095
1096 (defun isearch-printing-char ()
1097 "Add this ordinary printing character to the search string and search."
1098 (interactive)
1099 (isearch-process-search-char (isearch-last-command-char)))
1100
1101 (defun isearch-whitespace-chars ()
1102 "Match all whitespace chars, if in regexp mode.
1103 If you want to search for just a space, type C-q SPC."
1104 (interactive)
1105 (if isearch-regexp
1106 (if (and search-whitespace-regexp (not isearch-within-brackets)
1107 (not isearch-invalid-regexp))
1108 (isearch-process-search-string search-whitespace-regexp " ")
1109 (isearch-printing-char))
1110 (progn
1111 ;; This way of doing word search doesn't correctly extend current search.
1112 ;; (setq isearch-word t)
1113 ;; (setq isearch-adjusted t)
1114 ;; (goto-char isearch-barrier)
1115 (isearch-printing-char))))
1116
1117 (defun isearch-process-search-char (char)
1118 ;; Append the char to the search string, update the message and re-search.
1119 (isearch-process-search-string
1120 (isearch-char-to-string char)
1121 (isearch-text-char-description char)))
1122
1123 (defun isearch-process-search-string (string message)
1124 (setq isearch-string (concat isearch-string string)
1125 isearch-message (concat isearch-message message))
1126 (isearch-search-and-update))
1127
1128 \f
1129 ;; Search Ring
1130
1131 (defun isearch-ring-adjust1 (advance)
1132 ;; Helper for isearch-ring-adjust
1133 (let* ((ring (if isearch-regexp regexp-search-ring search-ring))
1134 (length (length ring))
1135 (yank-pointer-name (if isearch-regexp
1136 'regexp-search-ring-yank-pointer
1137 'search-ring-yank-pointer))
1138 (yank-pointer (eval yank-pointer-name)))
1139 (if (zerop length)
1140 ()
1141 (set yank-pointer-name
1142 (setq yank-pointer
1143 (mod (+ (or yank-pointer 0)
1144 (if advance -1 1))
1145 length)))
1146 (setq isearch-string (nth yank-pointer ring)
1147 isearch-message (mapconcat 'isearch-text-char-description
1148 isearch-string "")))))
1149
1150 (defun isearch-ring-adjust (advance)
1151 ;; Helper for isearch-ring-advance and isearch-ring-retreat
1152 (isearch-ring-adjust1 advance)
1153 (if search-ring-update
1154 (progn
1155 (isearch-search)
1156 (isearch-update))
1157 (isearch-edit-string)
1158 )
1159 (isearch-push-state))
1160
1161 (defun isearch-ring-advance ()
1162 "Advance to the next search string in the ring."
1163 ;; This could be more general to handle a prefix arg, but who would use it.
1164 (interactive)
1165 (isearch-ring-adjust 'advance))
1166
1167 (defun isearch-ring-retreat ()
1168 "Retreat to the previous search string in the ring."
1169 (interactive)
1170 (isearch-ring-adjust nil))
1171
1172 (defun isearch-ring-advance-edit (n)
1173 "Insert the next element of the search history into the minibuffer."
1174 (interactive "p")
1175 (let* ((yank-pointer-name (if isearch-regexp
1176 'regexp-search-ring-yank-pointer
1177 'search-ring-yank-pointer))
1178 (yank-pointer (eval yank-pointer-name))
1179 (ring (if isearch-regexp regexp-search-ring search-ring))
1180 (length (length ring)))
1181 (if (zerop length)
1182 ()
1183 (set yank-pointer-name
1184 (setq yank-pointer
1185 (mod (- (or yank-pointer 0) n)
1186 length)))
1187
1188 (erase-buffer)
1189 (insert (nth yank-pointer ring))
1190 (goto-char (point-max)))))
1191
1192 (defun isearch-ring-retreat-edit (n)
1193 "Inserts the previous element of the search history into the minibuffer."
1194 (interactive "p")
1195 (isearch-ring-advance-edit (- n)))
1196
1197 ;;(defun isearch-ring-adjust-edit (advance)
1198 ;; "Use the next or previous search string in the ring while in minibuffer."
1199 ;; (isearch-ring-adjust1 advance)
1200 ;; (erase-buffer)
1201 ;; (insert isearch-string))
1202
1203 ;;(defun isearch-ring-advance-edit ()
1204 ;; (interactive)
1205 ;; (isearch-ring-adjust-edit 'advance))
1206
1207 ;;(defun isearch-ring-retreat-edit ()
1208 ;; "Retreat to the previous search string in the ring while in the minibuffer."
1209 ;; (interactive)
1210 ;; (isearch-ring-adjust-edit nil))
1211
1212
1213 (defun isearch-complete1 ()
1214 ;; Helper for isearch-complete and isearch-complete-edit
1215 ;; Return t if completion OK, nil if no completion exists.
1216 (let* ((ring (if isearch-regexp regexp-search-ring search-ring))
1217 (alist (mapcar (function (lambda (string) (list string))) ring))
1218 (completion-ignore-case case-fold-search)
1219 (completion (try-completion isearch-string alist)))
1220 (cond
1221 ((eq completion t)
1222 ;; isearch-string stays the same
1223 t)
1224 ((or completion ; not nil, must be a string
1225 (= 0 (length isearch-string))) ; shouldn't have to say this
1226 (if (equal completion isearch-string) ;; no extension?
1227 (progn
1228 (if completion-auto-help
1229 (with-output-to-temp-buffer "*Isearch completions*"
1230 (display-completion-list
1231 (all-completions isearch-string alist))))
1232 t)
1233 (and completion
1234 (setq isearch-string completion))))
1235 (t
1236 (message "No completion") ; waits a second if in minibuffer
1237 nil))))
1238
1239 (defun isearch-complete ()
1240 "Complete the search string from the strings on the search ring.
1241 The completed string is then editable in the minibuffer.
1242 If there is no completion possible, say so and continue searching."
1243 (interactive)
1244 (if (isearch-complete1)
1245 (isearch-edit-string)
1246 ;; else
1247 (sit-for 1)
1248 (isearch-update)))
1249
1250 (defun isearch-complete-edit ()
1251 "Same as `isearch-complete' except in the minibuffer."
1252 (interactive)
1253 (setq isearch-string (buffer-string))
1254 (if (isearch-complete1)
1255 (progn
1256 (erase-buffer)
1257 (insert isearch-string))))
1258
1259 \f
1260 ;; The search status stack (and isearch window-local variables, not used).
1261 ;; Need a structure for this.
1262
1263 (defun isearch-top-state ()
1264 (let ((cmd (car isearch-cmds)))
1265 (setq isearch-string (car cmd)
1266 isearch-message (car (cdr cmd))
1267 isearch-success (nth 3 cmd)
1268 isearch-forward (nth 4 cmd)
1269 isearch-other-end (nth 5 cmd)
1270 isearch-word (nth 6 cmd)
1271 isearch-invalid-regexp (nth 7 cmd)
1272 isearch-wrapped (nth 8 cmd)
1273 isearch-barrier (nth 9 cmd)
1274 isearch-within-brackets (nth 10 cmd)
1275 isearch-case-fold-search (nth 11 cmd))
1276 (goto-char (car (cdr (cdr cmd))))))
1277
1278 (defun isearch-pop-state ()
1279 (setq isearch-cmds (cdr isearch-cmds))
1280 (isearch-top-state)
1281 )
1282
1283 (defun isearch-push-state ()
1284 (setq isearch-cmds
1285 (cons (list isearch-string isearch-message (point)
1286 isearch-success isearch-forward isearch-other-end
1287 isearch-word
1288 isearch-invalid-regexp isearch-wrapped isearch-barrier
1289 isearch-within-brackets isearch-case-fold-search)
1290 isearch-cmds)))
1291
1292 \f
1293 ;; Message string
1294
1295 (defun isearch-message (&optional c-q-hack ellipsis)
1296 ;; Generate and print the message string.
1297 (let ((cursor-in-echo-area ellipsis)
1298 (m (concat
1299 (isearch-message-prefix c-q-hack ellipsis isearch-nonincremental)
1300 isearch-message
1301 (isearch-message-suffix c-q-hack ellipsis)
1302 )))
1303 (if c-q-hack
1304 m
1305 (let ((message-log-max nil))
1306 (message "%s" m)))))
1307
1308 (defun isearch-message-prefix (&optional c-q-hack ellipsis nonincremental)
1309 ;; If about to search, and previous search regexp was invalid,
1310 ;; check that it still is. If it is valid now,
1311 ;; let the message we display while searching say that it is valid.
1312 (and isearch-invalid-regexp ellipsis
1313 (condition-case ()
1314 (progn (re-search-forward isearch-string (point) t)
1315 (setq isearch-invalid-regexp nil
1316 isearch-within-brackets nil))
1317 (error nil)))
1318 ;; If currently failing, display no ellipsis.
1319 (or isearch-success (setq ellipsis nil))
1320 (let ((m (concat (if isearch-success "" "failing ")
1321 (if (and isearch-wrapped
1322 (if isearch-forward
1323 (> (point) isearch-opoint)
1324 (< (point) isearch-opoint)))
1325 "over")
1326 (if isearch-wrapped "wrapped ")
1327 (if isearch-word "word " "")
1328 (if isearch-regexp "regexp " "")
1329 (if nonincremental "search" "I-search")
1330 (if isearch-forward ": " " backward: ")
1331 )))
1332 (aset m 0 (upcase (aref m 0)))
1333 m))
1334
1335
1336 (defun isearch-message-suffix (&optional c-q-hack ellipsis)
1337 (concat (if c-q-hack "^Q" "")
1338 (if isearch-invalid-regexp
1339 (concat " [" isearch-invalid-regexp "]")
1340 "")))
1341
1342 \f
1343 ;;; Searching
1344
1345 (defun isearch-search ()
1346 ;; Do the search with the current search string.
1347 (isearch-message nil t)
1348 (if (and (eq isearch-case-fold-search t) search-upper-case)
1349 (setq isearch-case-fold-search
1350 (isearch-no-upper-case-p isearch-string isearch-regexp)))
1351 (condition-case lossage
1352 (let ((inhibit-quit nil)
1353 (case-fold-search isearch-case-fold-search))
1354 (if isearch-regexp (setq isearch-invalid-regexp nil))
1355 (setq isearch-within-brackets nil)
1356 (setq isearch-success
1357 (funcall
1358 (cond (isearch-word
1359 (if isearch-forward
1360 'word-search-forward 'word-search-backward))
1361 (isearch-regexp
1362 (if isearch-forward
1363 're-search-forward 're-search-backward))
1364 (t
1365 (if isearch-forward 'search-forward 'search-backward)))
1366 isearch-string nil t))
1367 (setq isearch-just-started nil)
1368 (if isearch-success
1369 (setq isearch-other-end
1370 (if isearch-forward (match-beginning 0) (match-end 0)))))
1371
1372 (quit (isearch-unread ?\C-g)
1373 (setq isearch-success nil))
1374
1375 (invalid-regexp
1376 (setq isearch-invalid-regexp (car (cdr lossage)))
1377 (setq isearch-within-brackets (string-match "\\`Unmatched \\["
1378 isearch-invalid-regexp))
1379 (if (string-match
1380 "\\`Premature \\|\\`Unmatched \\|\\`Invalid "
1381 isearch-invalid-regexp)
1382 (setq isearch-invalid-regexp "incomplete input")))
1383 (error
1384 ;; stack overflow in regexp search.
1385 (setq isearch-invalid-regexp (car (cdr lossage)))))
1386
1387 (if isearch-success
1388 nil
1389 ;; Ding if failed this time after succeeding last time.
1390 (and (nth 3 (car isearch-cmds))
1391 (ding))
1392 (goto-char (nth 2 (car isearch-cmds)))))
1393
1394
1395 \f
1396 ;;; Highlighting
1397
1398 (defvar isearch-overlay nil)
1399
1400 (defun isearch-highlight (beg end)
1401 (if (or (null search-highlight) (null window-system))
1402 nil
1403 (or isearch-overlay (setq isearch-overlay (make-overlay beg end)))
1404 (move-overlay isearch-overlay beg end (current-buffer))
1405 (overlay-put isearch-overlay 'face
1406 (if (internal-find-face 'isearch nil)
1407 'isearch 'region))))
1408
1409 (defun isearch-dehighlight (totally)
1410 (if isearch-overlay
1411 (delete-overlay isearch-overlay)))
1412
1413 ;;; General utilities
1414
1415
1416 (defun isearch-no-upper-case-p (string regexp-flag)
1417 "Return t if there are no upper case chars in STRING.
1418 If REGEXP-FLAG is non-nil, disregard letters preceded by `\\' (but not `\\\\')
1419 since they have special meaning in a regexp."
1420 (let (quote-flag (i 0) (len (length string)) found)
1421 (while (and (not found) (< i len))
1422 (let ((char (aref string i)))
1423 (if (and regexp-flag (eq char ?\\))
1424 (setq quote-flag (not quote-flag))
1425 (if (and (not quote-flag) (not (eq char (downcase char))))
1426 (setq found t))))
1427 (setq i (1+ i)))
1428 (not found)))
1429
1430 ;; Portability functions to support various Emacs versions.
1431
1432 (defun isearch-char-to-string (c)
1433 (make-string 1 c))
1434
1435 (defun isearch-text-char-description (c)
1436 (if (and (integerp c) (or (< c ?\ ) (= c ?\^?)))
1437 (text-char-description c)
1438 (isearch-char-to-string c)))
1439
1440 ;; General function to unread characters or events.
1441 ;; Also insert them in a keyboard macro being defined.
1442 (defun isearch-unread (&rest char-or-events)
1443 (mapcar 'store-kbd-macro-event char-or-events)
1444 (setq unread-command-events
1445 (append char-or-events unread-command-events)))
1446
1447 (defun isearch-last-command-char ()
1448 ;; General function to return the last command character.
1449 last-command-char)
1450
1451 ;;; isearch.el ends here