Is there any way in AppCode 3.0
to generate documentation comments like in IntelliJ
?
For example, in IntelliJ
I can type a method:
public int method(float number){
// magic
}
And when above it, I will type: /**
, IDE will generate me code like this:
/**
*
* @param number
* @return
*/
public int method(float number){
// magic
}
In AppCode 3.0
after doing similar trick, I only get something like this:
/**
*
*/
- (int)method:(float)number;
I have checked Preferences/Smart Keys/Insert documentation comment stub
and it is checked.