vote up 6 vote down star
4
  1. Emacs wiki
  2. Xrefactory
  3. CEDET
  4. ?

What can you recommand me ?

flag

80% accept rate
3  
Similar: stackoverflow.com/questions/671412/… – dmckee Aug 17 at 2:54
1  
autocomplete package could also take information from Cedet/Semantic. For which language do you want to use auto completion? Xrefactory, as i remember is non-free – Alex Ott Aug 17 at 11:48
Thanks Alex, your tutorial was very helpful :) – ZeroCool Aug 17 at 13:56
I almost freaked out 'cause at first I read it "Emacs code COMPILATION for C/C++".. I was like "It compiles C/C++ code, too?!?!" Thank God I had read it wrong! – Laith J Aug 22 at 13:16
man you made me laugh lol – ZeroCool Aug 22 at 17:45

5 Answers

vote up 0 vote down check

CEDET is just great, certainly needs some time at the beginning but worth it though.

link|flag
vote up 1 vote down

I find that learning how to type fast (and having a decent memory) beats auto completion every time. How far must we go to try and dumb down programming?

link|flag
+1 Because I agree - It may be useful, but in the end practice and a firm knowledge base are more useful. – Chris Lutz Aug 24 at 1:03
What about Thousands lines project ? – ZeroCool Aug 24 at 23:35
vote up 2 vote down

You can try company-mode. It's a multi-backend in-buffer completion mechanism.
Watch the screencast to get an idea of how it works.

Some of the back-ends are:

And it's also available via ELPA.

link|flag
vote up 0 vote down

When I'm editing python code in Emacs, I like and use pysmell for code completion:

http://code.google.com/p/pysmell/

link|flag
Way to answer a question that wasn't asked. – Eisen Aug 23 at 18:18
vote up 1 vote down

I tend to use etags.

For emacs integration: http://www.gnu.org/software/emacs/emacs-lisp-intro/html%5Fnode/etags.html

For how to run etags. http://www.delorie.com/gnu/docs/emacs/etags.1.html

As a bonus, this blog post describes a bit more emacs setup and how to use etags. http://tulrich.com/geekstuff/emacs.html

Edit: To answer the comment, after runnning etags across your code, you can complete words with C-x t(that's what it's bound to on my machine.) Or you can call the tag-search method.

link|flag
Yeah that's what I actually use, but as far as I can see, doesn't provide code completion feature. Does it ? – ZeroCool Aug 21 at 14:15
for C/C++ gnu global is better – Alex Ott Aug 21 at 16:43
CEDET is far more powerful than GNU Global – earcar Aug 23 at 10:46

Your Answer

Get an OpenID
or

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