From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: =?UTF-8?Q?Jordi_Guti=C3=A9rrez_Hermoso?= Newsgroups: gmane.emacs.devel Subject: Re: Does CEDET work? Date: Thu, 19 Apr 2012 11:52:50 -0400 Message-ID: References: <81r4vks4ex.fsf@gmail.com> <12k469-gau.ln1@x.lesharris.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1334850796 4653 80.91.229.3 (19 Apr 2012 15:53:16 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 19 Apr 2012 15:53:16 +0000 (UTC) Cc: emacs-devel@gnu.org To: Les Harris Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Apr 19 17:53:11 2012 Return-path: Envelope-to: ged-emacs-devel@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 1SKtfN-0004ry-MI for ged-emacs-devel@m.gmane.org; Thu, 19 Apr 2012 17:53:05 +0200 Original-Received: from localhost ([::1]:53241 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SKtfN-0000yW-4l for ged-emacs-devel@m.gmane.org; Thu, 19 Apr 2012 11:53:05 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:36905) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SKtfH-0000wK-6Y for emacs-devel@gnu.org; Thu, 19 Apr 2012 11:53:03 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SKtfA-0001zx-UM for emacs-devel@gnu.org; Thu, 19 Apr 2012 11:52:58 -0400 Original-Received: from mail-gy0-f169.google.com ([209.85.160.169]:38588) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SKtfA-0001za-NY for emacs-devel@gnu.org; Thu, 19 Apr 2012 11:52:52 -0400 Original-Received: by ghrr18 with SMTP id r18so5446344ghr.0 for ; Thu, 19 Apr 2012 08:52:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=uqvntsxvrS3wDiVshhK5hymUWzZoUfVS0mEN4fVs4OQ=; b=Vp0MEqYAKQim1d5j/FwoIz8x6Ur3ed6ezT6PWza8TGPTJet0xvS520gEbcoajvu8y4 Vdw8ySbIl821tyc/KdQ9N492+PvpWR7BL/QGIew9u01AknWUDnwEguSr8zUivIe+Bilc jP9jrSCQLa7HVQM1KcFWfdWs8GeP8ox3F7mbFbys9ohYN3B/mR8Rtz4J+aziMFBtpZc6 kO96WxG3mROhNysOXsJToMUqKqLLw+9al42qQgvdk3BwXBCTku3lPyte1WT7Ju4u7QwR TYcyLSyLt9uIBjZ5Phmr9GWO3B1u2q9VU7dAckQG63KqCXR/L303vaiwpWtqV6OicgLt g8Wg== Original-Received: by 10.50.187.231 with SMTP id fv7mr6625297igc.51.1334850770704; Thu, 19 Apr 2012 08:52:50 -0700 (PDT) Original-Received: by 10.231.39.133 with HTTP; Thu, 19 Apr 2012 08:52:50 -0700 (PDT) In-Reply-To: <12k469-gau.ln1@x.lesharris.com> X-Google-Sender-Auth: M-cEbz8V8vhllWdbzIY8uDpXHxA X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.160.169 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:149819 Archived-At: On 19 April 2012 01:22, Les Harris wrote: > Jambunathan K writes: > >> Could you please share your autocomplete configuration as well? =C2=A0It >> could serve as a good starting point for people like me interested in >> exploring CEDET (and whatever else that goes well with it). > > Certainly, it's not much. > > ;; Autocomplete > (require 'auto-complete-config) > (add-to-list 'ac-dictionary-directories (expand-file-name > =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 "~/.emacs.d/elpa/auto-complete-= 1.4.20110207/dict")) > (setq ac-comphist-file (expand-file-name > =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 "~/.emacs.d/ac-comphist.dat")) > (ac-config-default) > > That's my Autocomplete configuration. =C2=A0It's available via ELPA or > EmacsWiki. > > The AC-Semantic backend is handed in my c-mode-hook which I posted > previously. > > Previous versions of CEDET (and Autocomplete mode) required much more > manual configuration. It all works more or less 'out of the box' now. Thanks, added your thing to the wiki: http://www.emacswiki.org/emacs/CEDET_Quickstart - Jordi G. H.