Common lisp auto-complete on aquamacks

When I start aquamaki using the autocomplete program installed http://cx4a.org/software/auto-complete/ with a lisp file with el as extension ( example.el )
Then all lisp functions are loaded into aquamacs , including autocomplete.
But when I load the generic lisp file ( example.lisp ), the autocomplete functions do not load.

So my question is: is it possible to change autocomplete code, so has lisp recognized common files?

thanks

+7
source share
1 answer

From the autocomplete guide:

Enable auto-complete-mode automatically for certain modes

auto-complete-mode will not automatically turn on for modes that are not in ac-modes . Therefore, you need to install, if necessary:

 (add-to-list 'ac-modes 'brandnew-mode) 

Or in your case

 (add-to-list 'ac-modes 'lisp-mode) 

For information only. The following modes are enabled by default.

 (defcustom ac-modes '(emacs-lisp-mode lisp-interaction-mode c-mode cc-mode c++-mode java-mode clojure-mode scala-mode scheme-mode ocaml-mode tuareg-mode perl-mode cperl-mode python-mode ruby-mode ecmascript-mode javascript-mode js-mode js2-mode php-mode css-mode makefile-mode sh-mode fortran-mode f90-mode ada-mode xml-mode sgml-mode) "Major modes `auto-complete-mode' can run on." :type '(repeat symbol) :group 'auto-complete) 
+3
source

All Articles