vote up 6 vote down star
1

I recently switched to emacs for my code editing, and it mostly works well.

However, for Objective-C I find myself missing Xcode's autocomplete feature as I have trouble remembering the long function names such as

- (id)initWithContentRect:(NSRect)contentRect styleMask:(NSUInteger)windowStyle backing:(NSBackingStoreType)bufferingType defer:(BOOL)deferCreation screen:(NSScreen *)screen;

Is there a way to get Xcode-style autocompletion on emacs?

Also, are there any good packages to help with Cocoa or Objective-C in general that I should have?

flag

67% accept rate

2 Answers

vote up 2 vote down

I haven't used XCode, but emacs comes with several autocomplete modes.

See:

  • built in dabbrev-expand (M-/ runs the command dabbrev-expand which "autocompletes" partially written text)
  • AutoComplete
  • HippieExpand

Also cedet for something more sophisticated - but I don't think it works with objective-c unfortunately.

link|flag
Thanks, I'm not sure any of these will work well enough though (doesn't look like any are context sensitive enough), I think I may just stick to XCode for Objective-C. – cobbal Mar 21 at 23:28
vote up 1 vote down

I haven't tried it yet, but company-mode has an xcode backend that could be quite helpful:

http://nschum.de/src/emacs/company-mode/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.