Difference between revisions of "Incremental Search"
Jump to navigation
Jump to search
m (some links) |
(add category) |
||
Line 34: | Line 34: | ||
[[Category:Navigation]] | [[Category:Navigation]] | ||
[[Category:Editing]] | [[Category:Editing]] | ||
+ | [[Category:Buffer Navigation]] |
Revision as of 11:13, 10 June 2017
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 |
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.
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 (see helm)