Block-comment documentation indent
I've searched for this, but I can't find it. Is there a way to alter the settings for new-line indents on block comments? Currently, when doing comments like this (for appledoc documentation)...
/** Builds out a common header label for use in this view controller
* @param text the text string to use.
*/
- (UILabel *)generateTitleLabelWithText:(NSString *)text;
If left to AppCode's defaults for how it handles block comments and new lines, it would come out like this.
/** Builds out a common header label for use in this view controller
* @param text the text string to use.
*/
- (UILabel *)generateTitleLabelWithText:(NSString *)text;
I'd like the ability to enforce the alignment of asterisks on new lines for block comments, or at least the ability to say yes, I want to indent new lines in block comments by one space. Right now, it only respects my one-space indentation if I insert a space manually on the first new line of the comment; then, new lines follow suit. Does it exist, and if not, can it be added?
Please sign in to leave a comment.
Ben,
we'll fix it in one of the following updates: OC-5992, OC-4225
Way cool; you guys rock. Thank you!