Indenting Continuation Lines in Xcode
问题 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