XAlign icon indicating copy to clipboard operation
XAlign copied to clipboard

注释怎么对齐

Open ufosky opened this issue 9 years ago • 3 comments

现在的对齐效果如下,我想要注释能对齐 对其前

@property(nonatomic, readonly)NSString *abcde; // 属性abcde
@property(nonatomic, readonly)NSString *bcde; // 属性bcde
@property(nonatomic, strong)NSString *cde;           // 属性cde
@property(nonatomic, readonly)NSArray *de;         // 属性de
@property(nonatomic, strong)NSDictionary *e; // 属性e
@property(nonatomic, weak, readonly)id delegate;         // 属性delegate

对齐后

@property (nonatomic, readonly      ) NSString     *abcde;// 属性abcde
@property (nonatomic, readonly      ) NSString     *bcde;// 属性bcde
@property (nonatomic, strong        ) NSString     *cde;// 属性cde
@property (nonatomic, readonly      ) NSArray      *de;// 属性de
@property (nonatomic, strong        ) NSDictionary *e;// 属性e
@property (nonatomic, weak, readonly) id           delegate;// 属性delegate

ufosky avatar Dec 19 '14 04:12 ufosky

fix 了么?

Tedko avatar Apr 09 '15 04:04 Tedko

我也有同样的困惑 怎么fix ?

heeween avatar Oct 28 '15 14:10 heeween

这个问题解决了没有?注释没有对齐感觉很别扭啊

whateve2 avatar May 12 '17 09:05 whateve2