From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: haris.bogdanovic@gmail.com Newsgroups: gmane.emacs.help Subject: auto-complete Date: Tue, 10 Nov 2015 13:03:55 -0800 (PST) Message-ID: <84512916-78b9-4c84-bf53-19ded013b2ae@googlegroups.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: ger.gmane.org 1447189576 6907 80.91.229.3 (10 Nov 2015 21:06:16 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 10 Nov 2015 21:06:16 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Nov 10 22:06:09 2015 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1ZwG7D-0004Da-Ez for geh-help-gnu-emacs@m.gmane.org; Tue, 10 Nov 2015 22:06:07 +0100 Original-Received: from localhost ([::1]:35579 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZwG7D-0005tj-Os for geh-help-gnu-emacs@m.gmane.org; Tue, 10 Nov 2015 16:06:07 -0500 X-Received: by 10.182.24.42 with SMTP id r10mr4881073obf.42.1447189436176; Tue, 10 Nov 2015 13:03:56 -0800 (PST) X-Received: by 10.50.25.131 with SMTP id c3mr156068igg.6.1447189436157; Tue, 10 Nov 2015 13:03:56 -0800 (PST) Original-Path: usenet.stanford.edu!i2no1619324igv.0!news-out.google.com!l1ni2512igd.0!nntp.google.com!i2no2468026igv.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=213.149.51.108; posting-account=dNtsdAoAAAA9XMsrqNzfci2xudvfNDx2 Original-NNTP-Posting-Host: 213.149.51.108 User-Agent: G2/1.0 Injection-Date: Tue, 10 Nov 2015 21:03:56 +0000 Original-Xref: usenet.stanford.edu gnu.emacs.help:215738 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:108024 Archived-At: 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 ? I am programming in Common Lisp and I want a dialog to pop up, with possible completions, in my REPL and .lisp files, while I'm typing. Thanks