Reputation: 96371
While in Eclipse
, when editing a file, one can quickly get to a method by name. Does IntelliJ
provide the same functionality via some shortcut?
Upvotes: 2
Views: 202
Reputation: 340708
Ctrl + F12 will show a pop-up that allows you to find a method within current class. Ctrl + F12 again includes methods inherited from parent class. For those on Mac, fn AppleF12 will do the trick.
BTW if you want to find a method in any file knowing its partial name, try Ctrl + Alt + Shift + N - works also for fields.
Upvotes: 3