Reputation: 10151
In eclipse when I mouse over a variable I see it quick defenition, when I mouse over with shift pressed, I see full defenition. But in idea, I always need to press some keys to do anything. Is there a way to simplify those tasks in idea?
Upvotes: 0
Views: 275
Reputation: 1190
The quick definition features is accessible with the shortcut ctrl + shift + I. I don't think it's possible to access to it on a key + the mouse over.
Upvotes: 1
Reputation: 48035
You can edit the idea.properties
found in the bin
folder of IntelliJ application and add this line:
auto.show.quick.doc=true
The
This will give you the JavaDoc when hovering over a variable:
Upvotes: 0