我的-相当扩展-Uncrustify Configuration有问题。我正在使用xcode自动运行uncrustify。
出于某种原因,Uncrustify似乎在关闭块声明之前添加了一个空间。
样本输入

 [_collectionView performBatchUpdates:nil completion:^(BOOL finished) {
 }];

示例输出(注意右大括号前的forced空格)
 [_collectionView performBatchUpdates:nil completion:^(BOOL finished) {
  }];

期望输出
 [_collectionView performBatchUpdates:nil completion:^(BOOL finished) {
 }];

我怎么解决这个问题?

最佳答案

好吧,所以我找到了解决办法。
我在我的uncrustify.cfg中使用了下面的参数
indent_oc_block_msg_xcode_style = true
在SourceForge项目网站上询问(大约一周后)得到了这个提示。

07-27 13:40