How do I get the code completion in IntelliJ to act like Xcode/Eclipse?
This meaning, typing a method that takes parameters, and when you select the method from the auto-complete list:
intToString(int val);
In Eclipse, you'll get:
intToString( (val-placeholder) );
and similar in Xcode.
However, in IntelliJ, all you get is:
intToString();
How do you get placeholders for parameters in IntelliJ?