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