Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm new to Emacs and the version is 24.

As mentioned in the title, I've installed auto-complete by M-x package-install from Marmalade-repo, and the files lies in ~/.emacs.d/elpa/auto-complete-1.4/.

Then I turned Emacs off and opened a new frame, but nothing happens when coding.

Do I need some configuration to make it run?

share|improve this question
3  
I have the same problem. Apparently auto-complete-mode does not get loaded. I have to enter (require 'auto-complete) in order to turn it on, and if I had this code to my .emacs it does not run. – Pedro Morte Rolo Nov 4 '12 at 13:44

3 Answers

I had this same issue. I fixed it by appending this to my .emacs

/auto-complete/manual.html#Manual_Installation

(add-to-list 'ac-dictionary-directories "~/.emacs.d/dict")
(require 'auto-complete-config)
(ac-config-default)
share|improve this answer
or, of course, something like "~/.emacs.d/elpa/auto-complete-1.4/dict". and (require 'auto-complete-config) may need to come first. – danneu Mar 21 at 4:59
I think the first line (add-to-list) is not needed - after installing auto-complete from marmalade, when I check the value of ac-dictionary-directories (using C-h v) it already has ~/.emacs.d/elpa/auto-complete-1.4/dict – iainbeeston Apr 11 at 22:45

I installed the Auto-Complete which hosted on the github repo. But the installation should resemble that installed by Package.

It seems that u forgot to turn the auto-complete-mode on. Add follow fragment to your .emacs.d file and have a try.

(ac-config-default)
share|improve this answer
Oh my countryman, 不太會elisp, 應該在哪裏配置呢? – rkk Aug 28 '12 at 15:18
2  
~/.emacs or ~/.emacs.d/init.el – hbin Aug 28 '12 at 15:28
shu ru fa huai le – hbin Aug 28 '12 at 15:28

I had a similar problem. I tried what was suggested in the docs (and by elviejo), but that didn't work. I then tried to do what Pedro suggested, which did work :-) The code added to my init.el file is:

(require 'auto-complete)
(add-to-list 'ac-dictionary-directories "~/.emacs.d/ac-dict")
(require 'auto-complete-config)
(ac-config-default)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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