XCode: Function argument indentation
Posted
by user343317
on Stack Overflow
See other posts from Stack Overflow
or by user343317
Published on 2010-05-17T18:28:19Z
Indexed on
2010/05/17
18:30 UTC
Read the original article
Hit count: 175
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?
© Stack Overflow or respective owner