views:

219

answers:

1

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?

A: 

I actually have the same question. Does anyone know how to turn this off? It gets very unreadable when you have long function calls (like CGImageDestinationCreateWithURL).

thebitguru
This is not a forum, you should only answer the question.
Florin