How to get code completion in IntelliJ to act like Xcode / Eclipse?
This value is by typing a method that takes parameters, and when you select a method from the autocomplete list:
intToString(int val);
In Eclipse you will 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?
source share