Hi Jao My .emacs auto-complete configuration is as follows: ;; Autocomplete (add-to-list 'load-path "~/../site-lisp/auto-complete/")(require 'auto-complete-config)(add-to-list 'ac-dictionary-directories "~/../site-lisp/auto-complete//ac-dict")(ac-config-default); dirty fix for having AC everywhere(define-globalized-minor-mode real-global-auto-complete-mode auto-complete-mode (lambda () (if (not (minibufferp (current-buffer))) (auto-complete-mode 1))))(real-global-auto-complete-mode t)
Thank youMatus On Fri, Dec 16, 2011 at 3:21 PM, Jose A. Ortega Ruiz <[email protected]> wrote: > > Hi Matus, > > On Fri, Dec 16 2011, Matus Kmit wrote: > >> Hello >> >> Auto-complete is working for me in the scheme buffers, but not in the >> geiser REPL. I set geiser-mode-company-p and geiser-repl-company-p to >> nil in the emacs customization buffer and also in .emacs init file, >> but still company auto complete in the repl. > > I've never used auto-complete, so i'm not sure what can be the problem. > Could you share your auto-complete configuration with us? > > Cheers, > jao > -- > Outside of a dog, a book is a man's best friend: and inside a dog, > it's too dark to read. > - Groucho Marx >
