How do you change the same word in Vscode? code example
Example 1: How do you change the same word in Vscode?
//for VS Code in Windows
(1) Execute "actions.find" (CTRL+f) followed by
(2)"editor.action.selectAllMatches" (ALT+ENTER)
Example 2: how to replace text for same words vs code
(1) Select your code
(2) Ctrl+Shift+L (which is editor.action.selectHighlights)
(3) voila, multiple cursors done - type away.