C
C#•3y ago
surwren

VScode-equivalent functions in MSVS [Answered]

1. VScode has a handy function where you are able to CTRL+CLICK into a function name in a .class file within a folder and it will automatically bring you to where that method is located (even if it's within a totally different .class file). 2. There's also global search (CTRL+SHIFT+F) if a folder is open. Does MSVS have an equivalent of these two functions? If so, how do I use them? (not related, but this is where I found the functions: https://code.visualstudio.com/assets/docs/getstarted/tips-and-tricks/KeyboardReferenceSheet.png)
9 Replies
333fred
333fred•3y ago
.class file? AFAIK, VS doesn't support Java at all
sibber
sibber•3y ago
1. F12 when the cursor is on the type 2. Control + Shift + T
333fred
333fred•3y ago
If you meant when applied to C# files, did you try either of those shortcuts? Because they work ctrl+t is not the same thing
sibber
sibber•3y ago
why it searches all tokens
333fred
333fred•3y ago
No Ctrl+Shift+F is the text search functionality in VSCode Not semantic/file name search
sibber
sibber•3y ago
ooh i thoguht they meant something else my bad so same shortcut
333fred
333fred•3y ago
As it happens, VSCode is using the VS mapping for that feature 🙂
surwren
surwrenOP•3y ago
Based! Thank you guys 🔥
Accord
Accord•3y ago
✅ This post has been marked as answered!

Did you find this page helpful?