I'm using Emacs to edit my Objective-C code. The default indentation looks like this:
NSTimer *timer =
[NSTimer timerWithTimeInterval:1.0
target:self
selector:@selector(callback:)
userInfo:nil
repeats:YES];
I would like Emacs to indent the code like XCode, that is, to align with the colons:
NSTimer *timer =
[NSTimer timerWithTimeInterval:1.0
target:self
selector:@selector(callback:)
userInfo:nil
repeats:YES];
Is there any hope to achieve this?
M-x align-regexp, but so far I've only gotten it to align the :'s, but the text left of the colon is left hanging. – Trey Jackson Aug 6 '09 at 20:12