Brent Sandstrom
Brent Sandstrom

Reputation: 839

View full javadoc while browsing autocomplete options in IntelliJ

I've always used Eclipse and I'm trying out IntelliJ now. One thing that I really miss is that in eclipse you could read the javadoc for any methods while browsing autocomplete options.

Eclipse:

enter image description here

IntelliJ:

enter image description here

Is there a way I can replicate that behavior in IntelliJ?

Upvotes: 1

Views: 69

Answers (1)

Ruslan
Ruslan

Reputation: 6290

While browsing autocomplete options you can invoke Quick documentation lookup by Ctrl + Q:

enter image description here

Also you can use Ctrl + P for Parameter info (which can be useful sometimes):

enter image description here

IntelliJ IDEA Reference Card to see all shortcuts

Upvotes: 1

Related Questions