#pragma mark -
ディレクティブの前または後にuncrustifyに空白行を追加することはできますか? これが重要であれば、私はobjCのXcode 4.2とiOS開発について言及しています。uncrustifyを使用して#pragma markの前に新しい行を追加するには?
私が何を意味するか、[EDIT]は、以下のようなものです:
// Some code here, and then 1 empty line
#pragma mark - Whatever
// Some other code here, after 1 empty line
はuncrustify使用して次のようになります。
// Some code here, and then 2 empty lines
#pragma mark - Whatever
// Some other code here, after 2 empty lines
解決方法を見つけましたか? –