Can I get Xcode's automatic indentation to indent continuation lines?
I want:
BOOL someLongVariableName = someLongValue
| someOtherLongValue
| moreLongValues
BOOL someOtherLongVariableName =
someEvenLongerValue;
[someLongVariableName
performSomeAction:someLongArgument]
I currently get:
BOOL someLongVariableName = someLongValue
| someOtherLongValue
| moreLongValues
BOOL someOtherLongVariableName =
someEvenLongerValue;
[someLongVariableName
performSomeAction:someLongArgument]
To be clear:
- I'm using explicit line breaks not automatic wrapping.
- I want the correct indent while editing and immediately after pressing return, not after running an external program (like uncrustify).