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
.class
file?
AFAIK, VS doesn't support Java at all1. F12 when the cursor is on the type
2. Control + Shift + T
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
why it searches all tokens
No
Ctrl+Shift+F is the text search functionality in VSCode
Not semantic/file name search
ooh i thoguht they meant something else my bad
so same shortcut
As it happens, VSCode is using the VS mapping for that feature 🙂
Based! Thank you guys 🔥
✅ This post has been marked as answered!