Eclipe/Xcode-esque Paramete Completion
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?
The most similar thing I have seen is IntelliJ IDEA 9's SuperComplete but when I try it in 12, I can only complete 1 parameter at a time and not the whole chain like the image here:
http://blogs.jetbrains.com/idea/2009/09/super-method-completion/
---
Original message URL: http://devnet.jetbrains.net/message/5475318#5475318
Please sign in to leave a comment.