I work with a lot of code which has 'dropped' braces, such as
if () { } else { }
I personally prefer the K&R style, such as
if () { } else { }
I made this new macro to make conversions easier - it simply keeps a space before/after the brace when joining lines - otherwise joining the lines would result in
if (){ }else{ }
I added it as a second macro with a scope of just "source", so text files won't be affected.
Thoughts?
Cheers, Ciarán