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.
set incsearch
With set incsearch, Vim shows search matches as you type the pattern. Combined with hlsearch, you get real-time visual feedback.