I am using Xcode, and noticed that Xcode's default auto creation and completion of functions makes opening curly braces go into new lines. For example
(void) this_is_what_xcode_does
{
// Opening braces on a line of its own - default format
}
I do not like that, I would like the opening braces to be on the same line as the function name. Just like below
(void) this_is_what_i_want_xcode_to_do {
// Opening braces on the same line as the function - my preferred format
}
How can I change the default Xcode format/behaviour?
Thanks.