In my Intellij IDEA Ultimate 2017.1 I find two similar options:
- Show quick documentation on mouse move
- Autopopup documentation
Let's localize them:
- File → Settings → Editor → General → General → Show quick documentation on mouse move
I see in Viewing Inline Documentation:
Quick Documentation Lookup helps you get quick information for any symbol or just method signature information, provided that this symbol has been supplied with documentation comments in the applicable format.
and then:
You can configure IntelliJ IDEA to automatically invoke the suggestions list, without having to call basic completion explicitly. To do this, in the main menu select File | Settings (or press Ctrl+Alt+S), on the left choose Editor | General | Code Completion, and select the Autopopup code completion option.
- File → Settings → Editor → General → Code Completion → Autopopup documentation (for explicitly invoked completion).
Mentioned in Auto-Completing Code:
Basic code completion helps you complete names of classes, methods, fields, and keywords within the visibility scope. When you invoke code completion, IntelliJ IDEA analyses the context and suggests the choices that are reachable from the current caret position.
The first one shows on mouse move above the given text. The second one shows on Ctrl+Space as shown in Intellij IDEA show javadoc automatically.
However, I do not see the difference between them when working normally on my Python projects, for example if I define my own class Foo
and I either press Ctrl+Space or Ctrl+Q on the Foo
from f = Foo()
.