XAlign icon indicating copy to clipboard operation
XAlign copied to clipboard

Ignore comments

Open kevnm67 opened this issue 9 years ago • 0 comments
trafficstars

If I align multiple properties and 1 or more has a comment xalign moves the "*" and causes an error.

Before Xalign:

/**
 *  Available units for current food.
 */
@property (strong, nonatomic) NSArray * availableUnits;
// Numerical values for foods weights
@property (strong, nonatomic) NSArray *weightValues;
@property (strong, nonatomic) NSArray *sectionTitles;


@end

After Xalign:

/                                     **
*  Available units for current        food.
 * /
@property (strong, nonatomic) NSArray * availableUnits;
// Numerical values for foods          weights
@property (strong, nonatomic) NSArray * weightValues;
@property (strong, nonatomic) NSArray * sectionTitles;

@end
'''

kevnm67 avatar Dec 10 '15 14:12 kevnm67