Keyboard Shortcuts

VSCODE

Visual Studio Code: Select each occurrence of find
1
2
3
4
5
6
7
Ctrl+Shift+L Select all occurrences of current selection

editor.action.selectHighlights
Ctrl+F2 Select all occurrences of current word

editor.action.changeAll
Please refer for more information here.

Another answer

1
2
3
well , basically the Ctrl+Shift+L will select all occurrences of word in the document
BUT there is some coool way to selecting them growingly:
if you hit Ctrl+d it will selects the second match , it you hit Ctrl+d again it will match the third one and so on ....