Reputation: 998
I'm new to IntelliJ, coming from NetBeans. In NetBeans, on the bottom left side of the window, under the list of files in the project, there is a list of methods/fields in the current class.
With IntelliJ, I found that same window using CTRL+F12, but it's a popup. I'd like it to sit permanently on the bottom left instead. How can I do that?
Upvotes: 7
Views: 8708
Reputation: 3702
ALT+7 (⌘7 on Mac) shall show up Structure
which lists all the methods of current class open in editor.
You can get familiar with IntelliJ IDEA from this official tutorial
Upvotes: 5
Reputation: 2083
You can open it by View->Tools windows->Structure
Alternatively you can press ALT+7 (Tested on Ubuntu).
Upvotes: 12