Is it possible to get spacecommander to respect this: ``` @import UIKit; void main() { CGRect rect = CGRectMake( 0.f, 0.f, 100.f, 200.f ); NSLog(@"%@", NSStringFromCGRect(rect)); } ``` Rather than converting it to this? ``` @import UIKit; void main() { CGRect rect = CGRectMake( 0.f, 0.f, 100.f, 200.f); NSLog(@"%@", NSStringFromCGRect(rect)); } ``` This looks like a shortcoming with `clang-format` but not sure if it's possible to workaround with a script in spacecommander.