1 ;;; isearch.el --- incremental search commands
3 ;; Copyright (C) 1985, 1986 Free Software Foundation, Inc.
7 ;; This file is part of GNU Emacs.
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ;; GNU General Public License for more details.
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING. If not, write to
21 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
25 (defvar search-last-string
"" "\
26 Last string search for by a non-regexp search command.
27 This does not include direct calls to the primitive search functions,
28 and does not include searches that are aborted.")
30 (defvar search-last-regexp
"" "\
31 Last string searched for by a regexp search command.
32 This does not include direct calls to the primitive search functions,
33 and does not include searches that are aborted.")
36 (defconst search-repeat-char ?\C-s
"\
37 *Character to repeat incremental search forwards.")
38 (defconst search-reverse-char ?\C-r
"\
39 *Character to repeat incremental search backwards.")
40 (defconst search-exit-char ?\C-m
"\
41 *Character to exit incremental search.")
42 (defconst search-delete-char ?
\177 "\
43 *Character to delete from incremental search string.")
44 (defconst search-quote-char ?\C-q
"\
45 *Character to quote special characters for incremental search.")
46 (defconst search-yank-word-char ?\C-w
"\
47 *Character to pull next word from buffer into search string.")
48 (defconst search-yank-line-char ?\C-y
"\
49 *Character to pull rest of line from buffer into search string.")
50 (defconst search-ring-advance-char ?\M-n
"\
51 *Character to pull next (more recent) search string from the ring of same.")
52 (defconst search-ring-retreat-char ?\M-p
"\
53 *Character to pull previous (older) search string from the ring of same.")
55 (defconst search-exit-option t
"\
56 *Non-nil means random control characters terminate incremental search.")
58 (defvar search-slow-window-lines
1 "\
59 *Number of lines in slow search display windows.
60 These are the short windows used during incremental search on slow terminals.
61 Negative means put the slow search window at the top (normally it's at bottom)
62 and the value is minus the number of lines.")
64 (defvar search-slow-speed
1200 "\
65 *Highest terminal speed at which to use \"slow\" style incremental search.
66 This is the style where a one-line window is created to show the line
67 that the search has reached.")
69 (defconst search-upper-case t
70 "*Non-nil means an upper-case letter as search input means case-sensitive.
71 Any upper-case letter given explicitly as input to the incremental search
72 has the effect of turning off `case-fold-search' for the rest of this search.
73 Deleting the letter from the search string cancels the effect.")
75 (fset 'search-forward-regexp
're-search-forward
)
76 (fset 'search-backward-regexp
're-search-backward
)
78 (defvar search-ring nil
79 "List of recent non-regexp incremental searches.
80 Each element is a cons cell of the form (STRING . UPPERCASE-FLAG).")
82 (defvar regexp-search-ring nil
83 "List of recent regexp incremental searches.
84 Each element is a cons cell of the form (STRING . UPPERCASE-FLAG).")
86 (defconst search-ring-max
16
87 "*Maximum length of search ring before oldest elements are thrown away.")
89 (defvar search-ring-yank-pointer nil
90 "The tail of the search ring whose car is the last thing searched for.")
92 (defvar regexp-search-ring-yank-pointer nil
93 "The tail of the regular expression search ring whose car is the last
97 (defun isearch-forward ()
98 "Do incremental search forward.
99 As you type characters, they add to the search string and are found.
100 Type Delete to cancel characters from end of search string.
101 Type RET to exit, leaving point at location found.
102 Type C-s to search again forward, C-r to search again backward.
103 Type C-w to yank word from buffer onto end of search string and search for it.
104 Type C-y to yank rest of line onto end of search string, etc.
105 Type C-q to quote control character to search for it.
106 Other control and meta characters terminate the search
107 and are then executed normally.
108 The above special characters are mostly controlled by parameters;
109 do M-x apropos on search-.*-char to find them.
110 C-g while searching or when search has failed
111 cancels input back to what has been found successfully.
112 C-g when search is successful aborts and moves point to starting point."
115 (define-key global-map
"\C-s" 'isearch-forward
)
117 (defun isearch-forward-regexp ()
118 "Do incremental search forward for regular expression.
119 Like ordinary incremental search except that your input
120 is treated as a regexp. See \\[isearch-forward] for more info."
123 (define-key esc-map
"\C-s" 'isearch-forward-regexp
)
125 (defun isearch-backward ()
126 "Do incremental search backward.
127 See \\[isearch-forward] for more information."
130 (define-key global-map
"\C-r" 'isearch-backward
)
132 (defun isearch-backward-regexp ()
133 "Do incremental search backward for regular expression.
134 Like ordinary incremental search except that your input
135 is treated as a regexp. See \\[isearch-forward] for more info."
138 (define-key esc-map
"\C-r" 'isearch-backward-regexp
)
141 ;; This function does all the work of incremental search.
142 ;; The functions attached to ^R and ^S are trivial,
143 ;; merely calling this one, but they are always loaded by default
144 ;; whereas this file can optionally be autoloadable.
145 ;; This is the only entry point in this file.
147 ;; OP-FUN is a function to be called after each input character is processed.
148 ;; (It is not called after characters that exit the search.)
150 (defun isearch (forward &optional regexp op-fun
)
151 (let ((search-string "")
153 ;; List of previous states during this search.
155 ;; t means search is currently successful.
157 ;; Set once the search has wrapped around the end of the buffer.
159 ;; Nominal starting point for searching
160 ;; Usually this is the same as the opoint,
161 ;; but it is changed by wrapping
162 ;; and also by repeating the search.
164 ;; Set temporarily when adding a character to a regexp
165 ;; enables it to match more rather than fewer places in the buffer.
167 ;; Set temporarily by yanking text into the search string.
170 ;; non-nil means an explicit uppercase letter seen in the input
172 ;; Non-nil means start using a small window
173 ;; if the search moves outside what is currently on the frame.
174 (slow-terminal-mode (and (<= baud-rate search-slow-speed
)
176 (* 4 search-slow-window-lines
))))
177 ;; t means a small window is currently in use.
178 (small-window nil
) ;if t, using a small window
179 ;; These variables preserve information from the small window
180 ;; through exit from the save-window-excursion.
183 ;; Point is at one end of the last match.
184 ;; This variable records the other end of that match.
186 ;; Value of point at start of search,
187 ;; for moving the cursor back on quitting.
189 (inhibit-quit t
) ;Prevent ^G from quitting, so we can read it.
190 ;; The frame we're working on; if this changes, we exit isearch.
191 (frame (if (fboundp 'selected-frame
) (selected-frame))))
194 (save-window-excursion
197 (or (and (numberp unread-command-char
) (>= unread-command-char
0))
199 (or (input-pending-p)
201 (if (and slow-terminal-mode
202 (not (or small-window
(pos-visible-in-window-p))))
204 (setq small-window t
)
205 (setq found-point
(point))
206 (move-to-window-line 0)
207 (let ((window-min-height 1))
208 (split-window nil
(if (< search-slow-window-lines
0)
209 (1+ (- search-slow-window-lines
))
211 (1+ search-slow-window-lines
)))))
212 (if (< search-slow-window-lines
0)
213 (progn (vertical-motion (- 1 search-slow-window-lines
))
214 (set-window-start (next-window) (point))
215 (set-window-hscroll (next-window)
217 (set-window-hscroll (selected-window) 0))
219 (goto-char found-point
)))))
220 (let ((char (if quit-flag
223 (setq quit-flag nil liberalized nil yank-flag nil
)
224 (cond ((and (or (not (integerp char
))
226 (not (= char search-ring-advance-char
))
227 (not (= char search-ring-retreat-char
))))
229 (setq unread-command-char char
)
230 (throw 'search-done t
))
232 ;; If the user switches to a different frame, exit.
233 ((not (eq frame last-event-frame
))
234 (setq unread-command-char char
)
235 (throw 'search-done t
))
237 ((eq char search-exit-char
)
238 ;; RET means exit search normally.
239 ;; Except, if first thing typed, it means do nonincremental
240 (if (= 0 (length search-string
))
241 (nonincremental-search forward regexp
))
242 (throw 'search-done t
))
244 ;; ^G means the user tried to quit.
248 ;; If search is successful, move back to starting point
249 ;; and really do quit.
250 (progn (goto-char opoint
)
252 ;; If search is failing, rub out until it is once more
254 (while (not success
) (isearch-pop))))
255 ((or (eq char search-repeat-char
)
256 (eq char search-reverse-char
))
257 (if (eq forward
(eq char search-repeat-char
))
258 ;; C-s in forward or C-r in reverse.
259 (if (equal search-string
"")
260 ;; If search string is empty, use last one.
261 (isearch-get-string-from-ring)
262 ;; If already have what to search for, repeat it.
264 (progn (goto-char (if forward
(point-min) (point-max)))
266 ;; C-s in reverse or C-r in forward, change direction.
267 (setq forward
(not forward
)))
268 (setq barrier
(point)) ; For subsequent \| if regexp.
270 (or (equal search-string
"")
272 ;; If repeating a search that found an empty string,
273 ;; ensure we advance. Test history to make sure we
274 ;; actually have done a search already; otherwise,
275 ;; the match data will be random.
276 (if (and (cdr history
)
277 (= (match-end 0) (match-beginning 0)))
278 (forward-char (if forward
1 -
1)))
280 (isearch-push-state))
281 ((= char search-delete-char
)
282 ;; Rubout means discard last input item and move point
283 ;; back. If buffer is empty, just beep.
284 (if (null (cdr history
))
287 ((= char search-ring-advance-char
)
290 (let ((length (length regexp-search-ring
)))
293 (setq regexp-search-ring-yank-pointer
294 (nthcdr (%
(+ 1 (- length
(length regexp-search-ring-yank-pointer
)))
297 (isearch-get-string-from-ring)))
298 (let ((length (length search-ring
)))
301 (setq search-ring-yank-pointer
302 (nthcdr (%
(+ 1 (- length
(length search-ring-yank-pointer
)))
305 (isearch-get-string-from-ring))))
308 ((= char search-ring-retreat-char
)
311 (let ((length (length regexp-search-ring
)))
314 (setq regexp-search-ring-yank-pointer
315 (nthcdr (%
(+ (- length
(length regexp-search-ring-yank-pointer
))
319 (isearch-get-string-from-ring)))
320 (let ((length (length search-ring
)))
323 (setq search-ring-yank-pointer
324 (nthcdr (%
(+ (- length
(length search-ring-yank-pointer
))
328 (isearch-get-string-from-ring))))
332 (cond ((or (eq char search-yank-word-char
)
333 (eq char search-yank-line-char
))
334 ;; ^W means gobble next word from buffer.
335 ;; ^Y means gobble rest of line from buffer.
336 (let ((word (save-excursion
337 (and (not forward
) other-end
338 (goto-char other-end
))
342 (if (eq char search-yank-line-char
)
347 (setq word
(regexp-quote word
)))
348 (setq search-string
(concat search-string word
)
350 (concat search-message
351 (mapconcat 'text-char-description
353 ;; Don't move cursor in reverse search.
355 ;; Any other control char =>
356 ;; unread it and exit the search normally.
357 ((and search-exit-option
358 (/= char search-quote-char
)
363 (setq unread-command-char char
)
364 (throw 'search-done t
))
366 ;; Any other character => add it to the
367 ;; search string and search.
368 (cond ((= char search-quote-char
)
369 (setq char
(read-quoted-char
370 (isearch-message t
))))
372 ;; RET translates to newline.
374 (setq search-string
(concat search-string
375 (char-to-string char
))
376 search-message
(concat search-message
377 (text-char-description char
))
378 uppercase-flag
(or uppercase-flag
379 (not (= char
(downcase char
)))))))
380 (if (and (not success
)
381 ;; unsuccessful regexp search may become
382 ;; successful by addition of characters which
383 ;; make search-string valid
386 ;; Check for chars that can make a regexp more liberal.
387 ;; They can make a regexp match sooner
388 ;; or make it succeed instead of failing.
389 ;; So go back to place last successful search started
390 ;; or to the last ^S/^R (barrier), whichever is nearer.
392 (cond ((and (memq char
'(?
* ??
))
393 ;; Don't treat *, ? as special
394 ;; within [] or after \.
395 (not (nth 6 (car history
))))
397 ;; This used to use element 2
398 ;; in a reverse search, but it seems that 5
399 ;; (which is the end of the old match)
400 ;; is better in that case too.
401 (let ((cs (nth 5 ; old other-end.
402 (car (cdr history
)))))
403 ;; (car history) is after last search;
404 ;; (car (cdr history)) is from before it.
405 (setq cs
(or cs barrier
))
412 (goto-char barrier
))))
413 ;; Turn off case-sensitivity if string requests it.
414 (let ((case-fold-search
415 (and case-fold-search
416 (not (and uppercase-flag
417 search-upper-case
)))))
418 ;; In reverse search, adding stuff at
419 ;; the end may cause zero or many more chars to be
420 ;; matched, in the string following point.
421 ;; Allow all those possibilities without moving point as
422 ;; long as the match does not extend past search origin.
423 (if (and (not forward
) (not liberalized
)
425 (looking-at (if regexp search-string
426 (regexp-quote search-string
)))
429 ;; Used to have (min opoint barrier)
430 ;; instead of barrier.
431 ;; This lost when wrapping.
432 (<= (match-end 0) barrier
)))
433 (setq success t invalid-regexp nil
434 other-end
(match-end 0))
435 ;; Not regexp, not reverse, or no match at point.
436 (if (and other-end
(not liberalized
))
437 (goto-char (if forward other-end
438 ;; Used to have opoint inside the min.
439 ;; This lost when wrapping.
440 (min barrier
(1+ other-end
)))))
442 (isearch-push-state))))
443 (if op-fun
(funcall op-fun
))))
444 (setq found-start
(window-start (selected-window)))
445 (setq found-point
(point)))
446 (if (> (length search-string
) 0)
447 (if (and regexp
(not (member search-string regexp-search-ring
)))
449 (setq regexp-search-ring
(cons (cons search-string uppercase-flag
)
451 regexp-search-ring-yank-pointer regexp-search-ring
)
452 (if (> (length regexp-search-ring
) search-ring-max
)
453 (setcdr (nthcdr (1- search-ring-max
) regexp-search-ring
) nil
)))
454 (if (not (member search-string search-ring
))
456 (setq search-ring
(cons (cons search-string uppercase-flag
)
458 search-ring-yank-pointer search-ring
)
459 (if (> (length search-ring
) search-ring-max
)
460 (setcdr (nthcdr (1- search-ring-max
) search-ring
) nil
))))))
461 ;; If we displayed a single-line window, set point in this window.
463 (goto-char found-point
))
464 ;; If there was movement, mark the starting position.
465 ;; Maybe should test difference between and set mark iff > threshold.
466 (if (/= (point) opoint
)
470 ;; Exiting the save-window-excursion clobbers this; restore it.
471 (set-window-start (selected-window) found-start t
))))
473 (defun isearch-message (&optional c-q-hack ellipsis
)
474 ;; If about to search, and previous search regexp was invalid,
475 ;; check that it still is. If it is valid now,
476 ;; let the message we display while searching say that it is valid.
477 (and invalid-regexp ellipsis
479 (progn (re-search-forward search-string
(point) t
)
480 (setq invalid-regexp nil
))
482 ;; If currently failing, display no ellipsis.
483 (or success
(setq ellipsis nil
))
484 (let ((m (concat (if success
"" "failing ")
485 (if wrapped
"wrapped ")
486 (if (or (not case-fold-search
)
487 (and uppercase-flag search-upper-case
))
489 (if regexp
"regexp " "")
491 (if forward
": " " backward: ")
493 (if c-q-hack
"^Q" "")
495 (concat " [" invalid-regexp
"]")
497 (aset m
0 (upcase (aref m
0)))
498 (let ((cursor-in-echo-area ellipsis
))
499 (if c-q-hack m
(message "%s" m
)))))
501 ;; Get the search string from the "front" of the ring of previous searches.
502 (defun isearch-get-string-from-ring ()
503 (let ((elt (car (if regexp
504 (or regexp-search-ring-yank-pointer regexp-search-ring
)
505 (or search-ring-yank-pointer search-ring
)))))
506 ;; ELT describes the most recent search or where we have rotated the ring.
508 (setq search-string
(car elt
)
509 uppercase-flag
(cdr elt
))
510 (setq search-string
"" uppercase-flag nil
)))
511 ;; Let's give this one the benefit of the doubt.
512 (setq invalid-regexp nil
)
513 (setq search-message
(mapconcat 'text-char-description search-string
"")))
515 (defun isearch-pop ()
516 (setq history
(cdr history
))
517 (let ((cmd (car history
)))
518 (setq search-string
(car cmd
)
519 search-message
(car (cdr cmd
))
522 other-end
(nth 5 cmd
)
523 invalid-regexp
(nth 6 cmd
)
526 uppercase-flag
(nth 9 cmd
))
527 (goto-char (car (cdr (cdr cmd
))))))
529 (defun isearch-push-state ()
530 (setq history
(cons (list search-string search-message
(point)
531 success forward other-end invalid-regexp
532 wrapped barrier uppercase-flag
)
535 (defun isearch-search ()
536 (let ((case-fold-search
537 (and case-fold-search
538 (not (and uppercase-flag
539 search-upper-case
)))))
540 (isearch-message nil t
)
541 (condition-case lossage
542 (let ((inhibit-quit nil
))
543 (if regexp
(setq invalid-regexp nil
))
547 (if forward
're-search-forward
're-search-backward
)
548 (if forward
'search-forward
'search-backward
))
549 search-string nil t
))
552 (if forward
(match-beginning 0) (match-end 0)))))
553 (quit (setq unread-command-char ?\C-g
)
555 (invalid-regexp (setq invalid-regexp
(car (cdr lossage
)))
556 (if (string-match "\\`Premature \\|\\`Unmatched \\|\\`Invalid "
558 (setq invalid-regexp
"incomplete input"))))
561 ;; Ding if failed this time after succeeding last time.
562 (and (nth 3 (car history
))
564 (goto-char (nth 2 (car history
))))))
566 ;; This is called from incremental-search
567 ;; if the first input character is the exit character.
568 ;; The interactive-arg-reader uses free variables `forward' and `regexp'
569 ;; which are bound by `incremental-search'.
571 ;; We store the search string in `search-string'
572 ;; which has been bound already by `incremental-search'
573 ;; so that, when we exit, it is copied into `search-last-string'.
575 (defun nonincremental-search (forward regexp
)
576 (let (message char function string inhibit-quit
)
577 (let ((cursor-in-echo-area t
))
578 ;; Prompt assuming not word search,
579 (setq message
(if regexp
580 (if forward
"Regexp search: "
581 "Regexp search backward: ")
582 (if forward
"Search: " "Search backward: ")))
583 (message "%s" message
)
584 ;; Read 1 char and switch to word search if it is ^W.
585 (setq char
(read-event)))
586 (if (and (numberp char
) (eq char search-yank-word-char
))
587 (setq message
(if forward
"Word search: " "Word search backward: "))
588 ;; Otherwise let that 1 char be part of the search string.
589 (setq unread-command-char char
))
591 (if (eq char search-yank-word-char
)
592 (if forward
'word-search-forward
'word-search-backward
)
594 (if forward
're-search-forward
're-search-backward
)
595 (if forward
'search-forward
'search-backward
))))
596 ;; Read the search string with corrected prompt.
597 (setq string
(read-string message
))
598 ;; Empty means use default.
599 (if (= 0 (length string
))
600 (setq string search-last-string
)
601 ;; Set last search string now so it is set even if we fail.
602 (setq search-last-string string
))
603 ;; Since we used the minibuffer, we should be available for redo.
604 (setq command-history
(cons (list function string
) command-history
))
605 ;; Go ahead and search.
606 (funcall function string
)))
608 ;;; isearch.el ends here