Difference between revisions of "Incremental Search"

From WikEmacs
Jump to navigation Jump to search
(package box)
(native -> built-in)
Line 23: Line 23:
  
 
[[Category:Search]]
 
[[Category:Search]]
[[Category:Native Package]]
+
[[Category:Built-in Package]]
 
[[Category:Navigation]]
 
[[Category:Navigation]]
 
[[Category:Editing]]
 
[[Category:Editing]]

Revision as of 15:30, 5 April 2012

isearch
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.