Incremental Search
Jump to navigation
Jump to search
The principal search command in Emacs is incremental. It begins searching as soon as you type the first character of the search string. As you type in the search string, Emacs shows you where the string (as you have typed it so far) would be found. When you have typed enough characters to identify the place you want, you can stop. Depending on what you plan to do next, you may or may not need to terminate the search explicitly with [RET], this allows user to navigate by doing incremental search.
Description | visualizes white spaces in the buffer |
---|---|
Author | name of author |
Maintainer | FSF |
Source | http://git.savannah.gnu.org/cgit/emacs.git/tree/lisp/isearch.el |
Part of Emacs | yes |
Usage
- [C-s] (or M-x isearch-forward) Incremental search forward.
- [C-r] (or M-x isearch-backward) Incremental search backward.
See also
To find text in a buffer, see also:
- grep
- occur (M-x occur)
- helm-swoop