IntelliJ code completion as Xcode & Eclipse

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?

+4
source share
1 answer

IntelliJ IDEA does not have this feature. Similar functionality has already been implemented in AppCode, so it is possible that it will be transferred to IntelliJ IDEA in a future version.

+1
source

All Articles