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: Thu, 15 Oct 2015 13:24:16 -0700 (PDT) Message-ID: <7c3224e5-e72c-4af5-b80c-fa405523f8b4@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 1444940769 988 80.91.229.3 (15 Oct 2015 20:26:09 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 15 Oct 2015 20:26:09 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Oct 15 22:26:02 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 1Zmp68-0003cT-98 for geh-help-gnu-emacs@m.gmane.org; Thu, 15 Oct 2015 22:26:00 +0200 Original-Received: from localhost ([::1]:49504 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zmp67-0003AM-Hx for geh-help-gnu-emacs@m.gmane.org; Thu, 15 Oct 2015 16:25:59 -0400 X-Received: by 10.66.197.136 with SMTP id iu8mr9314833pac.47.1444940656691; Thu, 15 Oct 2015 13:24:16 -0700 (PDT) X-Received: by 10.50.43.229 with SMTP id z5mr29689igl.8.1444940656654; Thu, 15 Oct 2015 13:24:16 -0700 (PDT) Original-Path: usenet.stanford.edu!kq10no21822352igb.0!news-out.google.com!z4ni22048ign.0!nntp.google.com!kq10no21822345igb.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.53; posting-account=dNtsdAoAAAA9XMsrqNzfci2xudvfNDx2 Original-NNTP-Posting-Host: 213.149.51.53 User-Agent: G2/1.0 Injection-Date: Thu, 15 Oct 2015 20:24:16 +0000 Original-Xref: usenet.stanford.edu gnu.emacs.help:215377 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:107661 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 ? Thanks