If my class has a non-empty constructor, is it possible to auto-complete parameters in the new
expression?
With Eclipse, if you press ctrl+space when the cursor is between the parenthesis:
MyClass myObject = new MyClass();
it will find the appropriate parameters.
--> MyClass myObject = new MyClass(name, value);
When I use ctrl+shift+spacebar after the new
, Intellij shows me the constructors, but I can't choose one for auto-completion. Am I missing an option?