How do I select all occurrences of a selection in Visual Studio Code in the same way I do in Sublime Text?

3

In sublime Text, you can select all occurrences of a selection and edit them at the same time. To do this, just hit ALT + F3 after making the selection, as in the example below:

In the example, </a></li> is selected, then all equal occurrences are selected

I'd like to know how to do this in Visual Studio Code. Could someone explain me?

    
asked by anonymous 11.09.2017 / 16:55

1 answer

1

In Visual Studio Code, the shortcut equivalent to ALT + F3 of Sublime Text would be CTRL + F2 .

You select the desired text, and then press Ctrl + F2 .

    
11.09.2017 / 17:33