Visual Studio has shortcut to navigate to an equal file in Sublime Text, when we press CTRL + P?

3

In sublime Text, we can use the CTRL + P shortcut to enter the name of a file and select it directly, without having to look for it in the folder structure.

For example:

In Visual Studio, is there any short cut to do something similar?

Note : I use version 2017 and 2013.

    
asked by anonymous 11.09.2017 / 16:59

1 answer

3

The command you are looking for is the " CTRL +, " it opens an input box like this and you type the file name, so typing it will update with the options. p>

This command works both in 2013 and 2017 versions of Visual Studio, but in the 2013 version you also have the option to use " CTRL +; ".

If you want to search for a file from what it contains, you can use " Ctrl + Shift + F ", it also helps a lot.

    
11.09.2017 / 17:03