From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Jai Dayal Newsgroups: gmane.emacs.help Subject: Re: auto-complete Date: Thu, 15 Oct 2015 16:36:01 -0400 Message-ID: References: <7c3224e5-e72c-4af5-b80c-fa405523f8b4@googlegroups.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1444941441 11191 80.91.229.3 (15 Oct 2015 20:37:21 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 15 Oct 2015 20:37:21 +0000 (UTC) Cc: help-gnu-emacs To: haris.bogdanovic@gmail.com Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Oct 15 22:37:11 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 1ZmpGv-0006ZU-C1 for geh-help-gnu-emacs@m.gmane.org; Thu, 15 Oct 2015 22:37:09 +0200 Original-Received: from localhost ([::1]:49563 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZmpGu-0007d7-Ff for geh-help-gnu-emacs@m.gmane.org; Thu, 15 Oct 2015 16:37:08 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:59968) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZmpGB-0007XR-6G for help-gnu-emacs@gnu.org; Thu, 15 Oct 2015 16:36:24 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZmpG9-0000v9-HT for help-gnu-emacs@gnu.org; Thu, 15 Oct 2015 16:36:23 -0400 Original-Received: from mail-oi0-x230.google.com ([2607:f8b0:4003:c06::230]:35303) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZmpG9-0000v2-BV for help-gnu-emacs@gnu.org; Thu, 15 Oct 2015 16:36:21 -0400 Original-Received: by oiev17 with SMTP id v17so5608470oie.2 for ; Thu, 15 Oct 2015 13:36:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=Nv4oFi8iMDIE11QVOOg+I3SpeolD/Q/e+nwF7yswL+k=; b=ZRS+mZe2Uh3r3k/s/OjksGcV16fsIHhe3HEE6OqaobCdicoPfOxOozKxDislCO0UqC KJBgY1ynYDd6NWGikb8FJ1EXiQFFv9F7+npxoJhwv50L6jX/1Xa3PhwlSyu656oGgnjT lzT7RvoMJ56HZ2ttKNUaoDj2oDQH9BUdeNMWg6sjuKybDGqku3c0a4SUUb/aCU5HEO9k 5zIPkneuBWCe87owXFLTZkjamgjkl81d5j7Df4xlhT2K98sn1UkTwmzRU8ccuTfPRXbR cKXmjpZkdpeE6RwOnB6Fgv0djg2cgQa06SZF4T9TXniST1cKb8+y0cSemj9WgbntGyDK wU3g== X-Received: by 10.202.60.137 with SMTP id j131mr6911771oia.12.1444941380810; Thu, 15 Oct 2015 13:36:20 -0700 (PDT) Original-Received: by 10.202.169.75 with HTTP; Thu, 15 Oct 2015 13:36:01 -0700 (PDT) In-Reply-To: <7c3224e5-e72c-4af5-b80c-fa405523f8b4@googlegroups.com> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:4003:c06::230 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:107662 Archived-At: What are you expecting auto-complete to do that it isn't? What language? Version of Emacs? OS? On Thu, Oct 15, 2015 at 4:24 PM, wrote: > 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 >