vimtricks.wiki Concise Vim tricks, one at a time.

How do you enable incremental search in Vim?

Answer

set incsearch

Explanation

With set incsearch, Vim shows search matches as you type the pattern. Combined with hlsearch, you get real-time visual feedback.

Next

How do I visually select a double-quoted string including the quotes themselves?