Case label indent
Case label indent
- Subject: Case label indent
- From: Alastair Houghton <email@hidden>
- Date: Tue, 15 Mar 2011 09:29:22 +0000
Hi all,
On Xcode 3.x, it was possible to stop Xcode from needlessly indenting case labels---i.e. so that switch statements look like this:
switch (foo) {
case Bar:
break;
case Baz:
break;
default:
break;
}
rather than
switch (foo) {
case Bar:
break;
case Baz:
break;
default:
break;
}
which is what Xcode has always preferred.
Doing this used to require manually setting the XCCodeSenseFormattingOptions user default.
Xcode 4 doesn't appear to respect this default setting any more. Is there an equivalent so that we can customise the indentation?
Kind regards,
Alastair.
--
http://alastairs-place.net
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden