Is there a way to search in vim like in emacs?
More precisely, say I start searching with incremental search turned on. The cursor will go to the first match. I hit enter and then 'n' to go to the next match. Now I want to add some characters to my original search expression and search for the next match. I can't do this because after I hit 'enter', the focus leaves the search term area.
The emacs equivalent would be ctrl-s blah ctrl-s ha. And I would end up searching for the term 'blahha'.
Does that make sense? Is it possible?
Edit
The ideal situation would be to do something like /blah < C-S >, and have it immediately jump to the second occurance of 'blah', while keeping the focus in the search buffer.
q/. See:h q/for more information. Also there is a nice Vimcast about this subject. vimcasts.org/episodes/… – Peter Rincker Oct 24 '12 at 20:27