Sublime Text 2 - Vim like Command Mode Search?

In Vim, if I press SHIFT * on top of fooBar or type

    /fooBar

all instances of 'fooBar' in the file will be selected, and I will be able to navigate through them using the N key.

How to get selection in Sublime Text 2 with Vintage turned on and VintageEx plugin ( not Insert mode using ALT F3)?

+5
source share
3 answers

In SublimeText 2, using / to start and enter your search, hold down the command and press g to view the highlighted results. Press Enter to go to visual mode for the result you selected.

+2
source

, N, , , , , shift+enter minimap to scroll , N, , .

: ENTER, /foo Vintage, .

0

The Vintageous package highlights all instances /by default.

0
source

All Articles