5

I'm trying to configure Uncrustify to prettify some obj-c files. With a code like this:

- (IBAction) blah:(id)sender {

which is fine to me, I obtain this:

- (IBAction) blah:(id) sender {

which is not fine anymore.

I tried setting sp_after_sparen to ignore or remove, but the space is still getting added. Could you please point me the right config element to use?
Thanks.

Carlo
  • 1,686
  • 3
  • 29
  • 43

1 Answers1

1

You should set sp_after_oc_type = remove. You can find a well-commented uncrustify config for Objective-C here: https://gist.github.com/940977

iHunter
  • 6,205
  • 3
  • 38
  • 56