Reputation: 839
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:
IntelliJ:
Is there a way I can replicate that behavior in IntelliJ?
Upvotes: 1
Views: 69
Reputation: 6290
While browsing autocomplete options you can invoke Quick documentation lookup by Ctrl + Q:
Also you can use Ctrl + P for Parameter info (which can be useful sometimes):
IntelliJ IDEA Reference Card to see all shortcuts
Upvotes: 1