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