However, when it comes to your plain old garden-variety search, Emacs
is strangely deficient. There is a simple search that just looks for
some arbitrary sequence of characters, but it's
rather well hidden. In addition, it lacks one very important feature:
you can't search for the same string repeatedly.
That is, you can't say "Okay, you
found the right sequence of letters; give me the next
occurrence"; you have to retype your search string
every time.
;; real searches, courtesy of Chris Genly
;; substitute your own Emacs hack directory for /home/los/mikel/emacs
(load-file "/home/los/mikel/emacs/search.el")
Now you can type CTRL-s to search forward and CTRL-r to search back.
Emacs will prompt you for a search string and start searching when
you press RETURN. Typing another CTRL-s or CTRL-r repeats your
previous search. When you try this, you'll see one
other useful feature: unlike the other Emacs searches, this kind of
search displays the "default"
(i.e., most recent) search string in the minibuffer.
It's exactly the kind of search I want.
;; rebind incremental search as ESC-s and ESC-r
(define-key global-map "\M-s" 'isearch-forward)
(define-key global-map "\M-r" 'isearch-backward)
;; have to rebind ESC s separately for text-mode. It's normally
;; bound to 'center-line'.
(define-key text-mode-map "\M-s" 'isearch-forward)
That is, ESC-s and ESC-r now give you forward and reverse incremental
searches. And once you've started an incremental
search, CTRL-s and CTRL-r still repeat the previous incremental
search, just as they're supposed to.
Of course, now you'll have to rebind the
"center-line" command if
you're fond of it. In my opinion,
it's not worth the trouble. The game of
"musical key-bindings" stops here.
-- ML
 |  |  |
19.7. Mike's Favorite Timesavers |  | 19.9. Unset PWD Before Using Emacs |