iceman
iceman

Reputation: 2130

Emacs: auto-complete-mode on but no auto-suggestions showing (Emacs lisp mode)

I'm puzzled as to why nothing pops up (in Emacs lisp mode) when I begin typing a function name. For example, after typing (def on a new line, I would assume that auto-complete should be showing me a alist of options which includes defun. Am not sure how long the default delay is, but I waited for a few seconds and nothing happened. Any suggestions?

Details regarding my installation process:

Upvotes: 0

Views: 631

Answers (2)

Qudit
Qudit

Reputation: 467

In my experience, other modes (e.g. flyspell) can interfere with auto-complete operation. (There is a workaround for slyspell built into auto-complete but you have to activate it in your. emacs file.)

I'd suggest trying it with an empty. emacs and then gradually adding parts of your configuration back in. You should be able to find the problem that way.

Upvotes: 0

Stefan
Stefan

Reputation: 28551

Not a direct answer, but company works fine out of the box in emacs-lisp-mode, so you might want to try that one.

Upvotes: 1

Related Questions