I was unable to find any solution of my specific issue. I'm using Xcode 3.2. I'd like to indent the next line of function argument just one step in from the previous line:
somevariable = pow(
a,
b);
However, Xcode's syntax-aware indenting insists on converting the above into:
somevariable = pow(
a,
b);
Where the arguments are aligned with opening parenthesis of the function.
How can I make indenting be configured to match my preference?