How to get class methods and variables to show up in a sidebar on Visual Studio Code?

Viewed 36

My first CS class used Eclipse and I'm now in a CS class that uses VS Code. In Eclipse, there is a sidebar that shows all the variables, methods, constructors, etc that are used in a java class. The picture below shows that:

So far, for the most part, I really prefer VS Code over Eclipse. The sidebar in Eclipse is the only thing I wish I had in VS Code. It's not a necessity but I find it helpful. Is there a way to have something like that in VS Code?

1 Answers

That sidebar in VS Code is the toggle OUTLINE at the bottom of the explorer tab.

Related