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?
相关问题
- Extended message for commit via Visual Studio Code
- Where are Automatic Type Acquisition typescript de
- Typescript: Why doesn't visual studio code rep
- .NET Core 3.1 CreateHostBuilder Cannot parse JSON
- How to get VS Code debug data like breakpoints, st
相关文章
- Visual Studio Code, MAC OS X, OmniSharp server is
- Omnisharp in VS Code produces a lot of warnings ab
- Visual Studio Code command for “repeat last comman
- VSCode remove warnings from problems tab
- Configure a TypeScript project with common depende
- Visual Studio Code disabling Normal, Edit and Visu
- Vscode: error TS2307: Cannot find module 'vsco
- How to customize context menu in Visual Studio Cod
In VSCode 1.24 you can do that.
Right click on
EXPLORER
on the side bar and checkedOutline
.For PHP install the extension PHP SYMBOLS
FOR PYTHON install the extension PYTHON
On Reload, this will work fine
There is a new release that can do that! Check here the latest release notes regarding code outline
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.
Invoke Code's
Go to symbol
command:macOS: cmd+shift+o (the letter
o
, not zero)Windows/Linux: ctrl+shift+o
Typing a colon (:) after invoking
Go to symbol
will group symbols by type (classes, interfaces, methods, properties, variables). Then just scroll to themethods
section.