mirror of
https://github.com/jbranchaud/til
synced 2026-01-03 23:28:02 +00:00
Add Incremental Searching as a vim til.
This commit is contained in:
12
vim/incremental-searching.md
Normal file
12
vim/incremental-searching.md
Normal file
@@ -0,0 +1,12 @@
|
||||
# Incremental Searching
|
||||
|
||||
You can do a text-based search on the contents of your current buffer by
|
||||
hitting `/` and then beginning to type a pattern (including regex). The
|
||||
`incsearch` feature makes searching for text even easier. As you type your
|
||||
pattern, the first valid match will be located and highlighted. As you
|
||||
continue to type the pattern, it will continue to update the highlighted
|
||||
match. Incremental searching makes it easy to see when you've made
|
||||
a typo in your pattern. By default `incsearch` is turned off in Vim. You
|
||||
can enable it with `set incsearch`.
|
||||
|
||||
See `h incsearch` for more details.
|
||||
Reference in New Issue
Block a user