Reputation: 1789
In the vscode vim plugin, I use gb
to select multiple words. I have four functions starting with handle
but they are not exactly the same word. How can I put multi cursor for selecting them? Thanks in advance!
handleSearchTermOnChange
handleActivateSearch
handleDeactivateSearch
handleSearchQuery
Upvotes: 7
Views: 5123
Reputation: 1398
Expanding on this a bit more, there is multi cursor support with the below method:
Upvotes: 3
Reputation: 773
With my understanding (in VsCodeVim) you can.
v
gb
as many times desired to choose all the instances you want.Happy shortcut coding.
Upvotes: 15