5

我有一个看起来像这样的目标 c 代码块

[paths enumerateObjectsUsingBlock:^(NSString * path, NSUInteger idx, BOOL * stop) {
    BOOL isDir;

    if ([fm fileExistsAtPath:path isDirectory:&isDir]) {
        ......
    }
}];

但是,经过Uncrustify之后,就变成了

[paths enumerateObjectsUsingBlock:^(NSString * path, NSUInteger idx, BOOL * stop) {
        BOOL isDir;

        if ([fm fileExistsAtPath:path isDirectory:&isDir]) {
            ......
        }
    }];

有没有办法让 Uncrustify 将两个缩进折叠成一个并保留代码的格式?

4

1 回答 1

0

我相信这个问题已在 Uncrustify 0.58 中修复

于 2013-12-16T22:46:49.803 回答