Emacs, Objective-C, and autocomplete - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T22:36:04Zhttp://stackoverflow.com/feeds/question/668732http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/668732/emacs-objective-c-and-autocomplete6Emacs, Objective-C, and autocompletecobbal2009-03-21T04:19:15Z2009-07-15T03:57:04Z
<p>I recently switched to emacs for my code editing, and it mostly works well.</p>
<p>However, for Objective-C I find myself missing Xcode's autocomplete feature as I have trouble remembering the long function names such as</p>
<pre><code>- (id)initWithContentRect:(NSRect)contentRect styleMask:(NSUInteger)windowStyle backing:(NSBackingStoreType)bufferingType defer:(BOOL)deferCreation screen:(NSScreen *)screen;
</code></pre>
<p>Is there a way to get Xcode-style autocompletion on emacs?</p>
<p>Also, are there any good packages to help with Cocoa or Objective-C in general that I should have?</p>
http://stackoverflow.com/questions/668732/emacs-objective-c-and-autocomplete/668797#6687972Answer by luapyad for Emacs, Objective-C, and autocompleteluapyad2009-03-21T05:36:04Z2009-03-21T07:00:16Z<p>I haven't used XCode, but emacs comes with several autocomplete modes. </p>
<p>See:</p>
<ul>
<li>built in dabbrev-expand (M-/ runs the command dabbrev-expand which "autocompletes" partially written text)</li>
<li><a href="http://www.emacswiki.org/emacs/AutoComplete" rel="nofollow">AutoComplete</a></li>
<li><a href="http://www.emacswiki.org/emacs/HippieExpand" rel="nofollow">HippieExpand</a></li>
</ul>
<p>Also <a href="http://cedet.sourceforge.net/" rel="nofollow">cedet</a> for something more sophisticated - but I don't think it works with objective-c unfortunately.</p>
http://stackoverflow.com/questions/668732/emacs-objective-c-and-autocomplete/1129334#11293341Answer by zpinter for Emacs, Objective-C, and autocompletezpinter2009-07-15T03:57:04Z2009-07-15T03:57:04Z<p>I haven't tried it yet, but company-mode has an xcode backend that could be quite helpful:</p>
<p><a href="http://nschum.de/src/emacs/company-mode/" rel="nofollow">http://nschum.de/src/emacs/company-mode/</a></p>