Xcode Disable Colon-aligning Auto-indent
Posted
by Andy Shea
on Stack Overflow
See other posts from Stack Overflow
or by Andy Shea
Published on 2010-04-16T02:06:57Z
Indexed on
2010/04/16
2:13 UTC
Read the original article
Hit count: 809
xcode
|auto-indent
Is there any way to disable the auto-indent Xcode performs to align colons when breaking up a long method name into multiple lines?
That is, I'd rather not have this:
UIBarButtonItem *longDescriptiveButton = [[UIBarButtonItem alloc] initWithTitle:@"Title of Button"
style:UIBarButtonItemStyleBordered
target:self
action:@selector(longDescriptiveButtonClicked)];
which, as you can see, looks terrible when variable/method/class names are long.
© Stack Overflow or respective owner