From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: =?UTF-8?Q?Haris_Bogdanovi=c4=87?= Newsgroups: gmane.emacs.help Subject: auto-complete Date: Sun, 4 Oct 2015 22:12:14 +0200 Message-ID: <5611881E.907@xnet.hr> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1443998138 6948 80.91.229.3 (4 Oct 2015 22:35:38 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 4 Oct 2015 22:35:38 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Oct 05 00:35:29 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 1ZirsO-00015E-Dp for geh-help-gnu-emacs@m.gmane.org; Mon, 05 Oct 2015 00:35:28 +0200 Original-Received: from localhost ([::1]:43809 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZirsN-00043V-L3 for geh-help-gnu-emacs@m.gmane.org; Sun, 04 Oct 2015 18:35:27 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:50065) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zipdu-0002gx-Gt for help-gnu-emacs@gnu.org; Sun, 04 Oct 2015 16:12:23 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zipdr-0002sQ-7V for help-gnu-emacs@gnu.org; Sun, 04 Oct 2015 16:12:22 -0400 Original-Received: from lvpmailfs2.vip.hr ([212.91.113.95]:40822) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zipdq-0002sF-Ul for help-gnu-emacs@gnu.org; Sun, 04 Oct 2015 16:12:19 -0400 Original-Received: from localhost (localhost [127.0.0.1]) by lvpmailfs2.vip.hr (Postfix) with ESMTP id 640B760066 for ; Sun, 4 Oct 2015 22:11:50 +0200 (CEST) Original-Received: from lvpmailfs4.vip.hr ([10.243.154.131]) by localhost (lvpmailfs2.vipnet.hr [127.0.0.1]) (amavisd-new, port 10051) with ESMTP id lpsd4EGkXAL0 for ; Sun, 4 Oct 2015 22:11:50 +0200 (CEST) Original-Received: from lvpmailfs4.vip.hr (lvpmailfs4.vipnet.hr [10.243.154.131]) by lvpmailfs4.vip.hr (Postfix) with SMTP id 4D1A620066 for ; Sun, 4 Oct 2015 22:11:50 +0200 (CEST) Original-Received: from [192.168.0.11] (unknown [10.243.154.100]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: fbogdanovic@xnet.hr) by lvpmailfs4.vip.hr (Postfix) with ESMTPSA id 2B1C620024 for ; Sun, 4 Oct 2015 22:11:50 +0200 (CEST) User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:38.0) Gecko/20100101 Thunderbird/38.2.0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 212.91.113.95 X-Mailman-Approved-At: Sun, 04 Oct 2015 18:35:16 -0400 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 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:107508 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/ac-dict") (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)))))p (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 auto-complete doesn't work ? Do I press TAB key to auto-complete ? Thanks