phimuemue
phimuemue

Reputation: 35983

Emacs: Auto Complete for C++

i found this autocompletion for Emacs: http://www.emacswiki.org/emacs/AutoComplete, but I can't find what languages it supports.

I want to use it particular for C++-autocompletion. Has anybody experience with this?

Upvotes: 4

Views: 10954

Answers (2)

Alex Ott
Alex Ott

Reputation: 87164

Setup of Emacs with CEDET for autocompletion for C++ is described in my article. You can look to my CEDET config for working setup

Upvotes: 5

Bozhidar Batsov
Bozhidar Batsov

Reputation: 56595

As you can see from the User's Guide it has built-in support for C/C++ by means of Semantic. There is also one more tool from the auto-complete mode developer called GCC Sense, which he claims to be most intelligent tool for C/C++ programming and of course it integrates nicely with auto-complete so you might have a look at it as well.

Upvotes: 5

Related Questions