How to get in-place structure popup of class in IntelliJ?

Answered

While working on a class in intellij if I have a dependency in that class how can I get the structure outline of that dependency class as a popup without having to navigate to the file itself. In eclipse Ctrl + F3 works good.

class Person {
private Friend friend;
...
}

If I select Friend and press Ctrl + F3 in eclipse it pops-up the structure or outline of Friend in place without navigating to it. Is there something similar available in intellij?

0
1 comment

There is no such feature at the moment. You can only view the outline of the currently open file via Navigate | File Structure (Ctrl+F12), so you will have to open Friend first (F4).

0

Please sign in to leave a comment.