views:

20

answers:

2

I'm switching over from Eclipse to IntelliJ. In Eclipse, if you do Ctrl+O in the editor, it will show a hover popup that allows you to search for a method in the class you're editing.

What is the equivalent shortcut for that in IntelliJ?

A: 

you can type "this." and wait a second, a popup with methods ans properties will display.

Not a shorcut but it work's for me.

PD: if you are in a static method, type the class name.

Telcontar
wow, I really hope there's a better way to do this.
Glide
+2  A: 

Use View | File Structure Popup (Ctrl+F12). Start typing method/symbol name to either narrow down the list or highlight the desired element. Press Enter to navigate to the selected element.

CrazyCoder

related questions