Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Emacs X11 autocompletion (intellisense)

I use visual studio for day to day programming (read putting food in my mouth) but for personal programming (read c/c++ hacking) I use Emacs.

Right now I am doing a programming exercise involving the X11 API. I am continually referring to the programming API manual to find the signature of function calls.

What would be really nice would be if there was an emacs alternative to the visual studio intellisense. I know there is autocompletion for the language specifics.

Is there such an extension available to Emacs? Or if not, is there way of creating one, maybe using the language specifics mechanism already used for auto completion?

like image 680
JB. Avatar asked Mar 16 '10 12:03

JB.


2 Answers

Check out : http://cedet.sourceforge.net/intellisense.shtml if that would work for you.

like image 159
Tuomas Pelkonen Avatar answered Nov 02 '22 23:11

Tuomas Pelkonen


Check out autocomplete.el, combine it with CEDET and you've got yourself true drop-down box intellisense-style completions.

http://www.emacswiki.org/emacs/AutoComplete http://cx4a.org/software/auto-complete/

like image 25
rryan Avatar answered Nov 03 '22 00:11

rryan