Issue
I'm considering switching from Eclipse to IntelliJ IDEA, but there's one thing holding me back: the autocomplete. Eclipse shows me all the information I want from the start whereas IntelliJ holds back some information. The only thing I'm still missing is separate entries in code completion for each constructor signature. And I believe it's pretty weird that's missing since method signatures are done separately.
My question being, is it possible (am I overlooking something) to get IntelliJ to show separate entries for each signature for constructors WITH documentation, instead of just showing the class name and making you figure out afterwards if you're even in the right place or not.
Eclipse way of showing (preferred)
IntelliJ IDEA way of showing (not preferred)
Solution
This answer is base on IDEA version 2021.2.2
In the Settings -> Editor -> General -> Code Completion
, check Show parameter name hints on completion under Parameter Info session.
Combine with Ctrl + Q
, you can view the javadoc for each constructor.
Answered By - Guo Ferrell
Answer Checked By - Marilyn (JavaFixing Volunteer)