From: haris.bogdanovic@gmail.com
To: help-gnu-emacs@gnu.org
Subject: auto-complete
Date: Thu, 15 Oct 2015 13:24:16 -0700 (PDT) [thread overview]
Message-ID: <7c3224e5-e72c-4af5-b80c-fa405523f8b4@googlegroups.com> (raw)
Hi
This is my .emacs file:
; ----------------------------------------------------------
(setq package-archives '(("gnu" . "http://elpa.gnu.org/packages/")
("marmalade" . "https://marmalade-repo.org/packages/")
("melpa" . "http://melpa.org/packages/")))
(add-to-list 'load-path "C:/Users/h/AppData/Roaming/.emacs.d/elpa/slime-20150830.1446")
(require 'slime)
(add-hook 'lisp-mode-hook (lambda () (slime-mode t)))
(add-hook 'inferior-lisp-mode-hook (lambda () (inferior-slime-mode t)))
(setq inferior-lisp-program "C:/Users/h/ccl/wx86cl")
(add-to-list 'load-path "~/.emacs.d/elpa/ac-slime-20150729.2035")
;; enable autocomplete
(add-to-list 'load-path "~/.emacs.d/elpa/auto-complete-20150618.1949")
(add-to-list 'load-path "~/.emacs.d/elpa/popup-20150626.711")
(require 'auto-complete-config)
(add-to-list 'ac-dictionary-directories "~/.emacs.d/elpa/dictionary-20140717.2029")
(ac-config-default)
(global-auto-complete-mode t)
(auto-complete-mode t)
(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))
(require 'ac-slime)
(add-hook 'slime-mode-hook 'set-up-slime-ac)
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(blink-cursor-mode nil)
'(show-paren-mode t)
'(initial-frame-alist (quote ((fullscreen . maximized)))))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)
(slime)
; -----------------------------------------------------------
Why doesn't my auto-completion work ?
Thanks
next reply other threads:[~2015-10-15 20:24 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-15 20:24 haris.bogdanovic [this message]
2015-10-15 20:36 ` auto-complete Jai Dayal
-- strict thread matches above, loose matches on Subject: below --
2015-11-10 21:03 auto-complete haris.bogdanovic
2015-11-11 0:56 ` auto-complete John Mastro
2015-10-04 20:12 auto-complete Haris Bogdanović
2015-10-06 1:24 ` auto-complete Dmitry Gutov
2015-10-06 1:30 ` auto-complete Emanuel Berg
2011-04-26 18:41 auto-complete Andrea Crotti
2011-04-13 23:35 auto-complete daniele.g
2011-04-26 7:01 ` auto-complete Bernardo
2011-04-26 17:26 ` auto-complete Andrea Crotti
2011-04-26 18:07 ` auto-complete daniele.g
2006-02-05 23:14 auto-complete dunnil
2006-02-06 4:16 ` auto-complete Stefan Monnier
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=7c3224e5-e72c-4af5-b80c-fa405523f8b4@googlegroups.com \
--to=haris.bogdanovic@gmail.com \
--cc=help-gnu-emacs@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).