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