Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

auto-complete 1.3.1 failing on OS X 10.7 and Emacs 24.3.50.1 #280

Closed
ghost opened this issue Jan 18, 2014 · 3 comments
Closed

auto-complete 1.3.1 failing on OS X 10.7 and Emacs 24.3.50.1 #280

ghost opened this issue Jan 18, 2014 · 3 comments

Comments

@ghost
Copy link

ghost commented Jan 18, 2014

AC loads fine, but when, say, editing some Emacs Lisp (or any auto completing source language) two timers fail with the same error, e.g.:

Error running timer `ac-update-greedy': (error "Keyword argument :mouse-face not one of (:min-height :around :face :selection-face :scroll-bar :margin-left :margin-right :symbol :parent :parent-offset)")

The other timer where this happens is ac-show-menu.

I installed auto-complete according to the directions and my auto-complete config looks like this:

(require 'auto-complete-config)
(add-to-list 'ac-dictionary-directories "~/elisp/auto-complete/dict")
(ac-config-default)

I copied the dict directory to ~/elisp.

It all used to work before I upgraded Emacs.

Perhaps I have something mis-configured?

@ghost
Copy link
Author

ghost commented Jan 19, 2014

This was a configuration issue. I figured it out. (require 'slime-autoloads) needs to happen before, of course, adding a slime auto-complete source via ac-slime.el:

;; auto-complete for slime, see ac-slime.el
(require 'ac-slime)
(add-hook 'slime-mode-hook 'set-up-slime-ac)
(add-hook 'slime-repl-mode-hook 'set-up-slime-ac)
(eval-after-load "auto-complete"
'(add-to-list 'ac-modes 'slime-repl-mode))

@syohex
Copy link
Contributor

syohex commented Jan 19, 2014

FYI. 1.3.1 is older version. You should install newer version from MELPA with package.el or el-get.

@syohex
Copy link
Contributor

syohex commented Jan 22, 2014

@M7D github version is latest.

@syohex syohex closed this as completed May 19, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant