dhblah
dhblah

Reputation: 10151

Intellij idea quick defenition

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

Answers (2)

F. Geraerts
F. Geraerts

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

maba
maba

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:

enter image description here

Upvotes: 0

Related Questions