I am running the most recent version of auto-complete
in elpa
with the new stable release of Emacs (24.3) in Linux. I have the following setup on my Emacs init file.
(add-to-list 'package-archives '("melpa" . "http://melpa.milkbox.net/packages/") t)
(require 'auto-complete-config)
(setq-default ac-sources
'(
ac-source-filename
ac-source-abbrev
ac-source-dictionary
ac-source-words-in-same-mode-buffers))
(ac-config-default)
If I start typing: /home/james/.em
in a buffer (e.g. a Python buffer) I would expect auto-complete to suggest:
.emacs
.emacs.d
but it does not show anything. The same thing happens with other files.
Sometimes I do see suggestions and/or the pop-up menu shows up, but other times it doesn't.
Any thoughts why?
/home/james/.em
? I don't think autocomplete works in the minibuffer. Maybe you are looking forM-x ido-mode
? – Ista.emacs
). I updated the OP – Amelio Vazquez-Reinaido-mode
? – Arpit Rawat