Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sublime Text 2 - Vim like search highlight in Command mode?

In Vim if I hit SHIFT * over fooBar, or type

    /fooBar

all instances of 'fooBar' in the file will be highlighted and I can navigate through them using the N key.

How do I get this highlighting in Sublime Text 2 with Vintage enabled and VintageEx plugin installed (not Insert mode using ALT F3)?

like image 943
cre8value Avatar asked Nov 04 '22 03:11

cre8value


1 Answers

In SublimeText 2, using / to start and type your search, hold down command and hit g to cycle through the highlighted results. Hit enter to go into visual mode on the result you selected.

like image 123
HKstrongside Avatar answered Nov 15 '22 07:11

HKstrongside