How to always keep Parameter Info popup open
Answered
Lets say I have a method that takes an object as single parameter
That object has a constructor with 5 String parameters
Now I want to call the method with a new instance
myMethod(new MyObject( .... ));
How can I make IntelliJ always show the Parameter Info popup for the required MyObject constructor parameters while my keyboard cursor changes to a position after the MyObject opening bracket but before the MyObject() closing bracket?
Please sign in to leave a comment.
You can configure for how long popup will stay, see https://www.jetbrains.com/help/idea/viewing-reference-information.html?keymap=primary_windows#configure-parameter-info-popup
And if popup was closed, you can invoke it by '⌘ P' on Mac or 'Ctrl+P' on Win, or click View | Parameter Info