Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Method List in Visual Studio Code

I've recently started using the Visual Studio Code editor. I'm really loving it, but there's one critical feature (for me) that I haven't been able to find. Is there a method list, similar to the Navigator in NetBeans or Member dropdown in Visual Studio?

like image 617
Jim Carr Avatar asked Mar 22 '16 12:03

Jim Carr


People also ask

What does f12 do in VS Code?

If a language supports it, you can go to the definition of a symbol by pressing F12. Tip: You can jump to the definition with Ctrl+Click or open the definition to the side with Ctrl+Alt+Click.


1 Answers

Yes, there is the workbench.action.gotoSymbol command. On Windows and Linux it's set to CTRL+Shift+O by default.

If this command isn't available for the file types you are working with then you should take a look at the VSCode extensions. Not all languages support this feature.

like image 105
Wosi Avatar answered Nov 03 '22 02:11

Wosi