I set autocomplete using marmalade remarks. Everything was installed correctly and after moving the material I managed to start and perform automatic correction without any errors with the following code in my init.el:
;; auto-complete (add-to-list 'load-path "~/.emacs.d/elpa/auto-complete") (require 'auto-complete-config) (add-to-list 'ac-dictionary-directories "~/.emacs.d/elpa/auto-complete/dict") (ac-config-default)
Now I can use autocomplete without hick-ups with Emacs Lisp, but whenever I use any other mode, such as Java, C or C ++, it does not work at all.
I also have yasnippet installed (it works great), not sure if this could have anything to do with it. Here is the corresponding code in my init.el:
;;yasnippet (add-to-list 'load-path "~/.emacs.d/plugins/yasnippet") (require 'yasnippet) (yas-global-mode 1)
I am involved in the training of Emacs, and currently I'm still a noob. I searched all the documentation and so on, but found nothing. I would really appreciate any help on this.
Nicolás carlo
source share