Is it possible to have uncrustify add some empty lines before/after the #pragma mark -
directives?
If that is important, I am referring to Xcode 4.2 and iOS development in objC.
[EDIT] What I mean is something like the following:
// Some code here, and then 1 empty line
#pragma mark - Whatever
// Some other code here, after 1 empty line
becomes using uncrustify:
// Some code here, and then 2 empty lines
#pragma mark - Whatever
// Some other code here, after 2 empty lines