From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/63920 Path: news.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.general Subject: Re: How does one use ecomplete? Date: Tue, 31 Oct 2006 08:35:56 +0900 Organization: Emacsen advocacy group Message-ID: References: <87odrx6724.fsf@glaurung.internal.golden-gryphon.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1162251701 16928 80.91.229.2 (30 Oct 2006 23:41:41 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 30 Oct 2006 23:41:41 +0000 (UTC) Original-X-From: ding-owner+m12447@lists.math.uh.edu Tue Oct 31 00:41:32 2006 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by ciao.gmane.org with esmtp (Exim 4.43) id 1Gegkq-0007aa-2K for ding-account@gmane.org; Tue, 31 Oct 2006 00:41:20 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu ident=lists) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 1Gegkh-0006tQ-00; Mon, 30 Oct 2006 17:41:11 -0600 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1Gegfx-0006tI-00 for ding@lists.math.uh.edu; Mon, 30 Oct 2006 17:36:17 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtp (Exim 4.63) (envelope-from ) id 1Gegfq-0004gK-Rt for ding@lists.math.uh.edu; Mon, 30 Oct 2006 17:36:17 -0600 Original-Received: from unknown.scnet.net ([216.246.45.90] helo=orlando.hostforweb.net) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1Gegfh-0001BK-00 for ; Tue, 31 Oct 2006 00:36:01 +0100 Original-Received: from [216.246.45.90] (helo=mail.jpl.org) by orlando.hostforweb.net with esmtpa (Exim 4.52) id 1Gegg3-0008N6-Dd for ding@gnus.org; Mon, 30 Oct 2006 17:36:23 -0600 Original-To: ding@gnus.org X-Hashcash: 1:20:061030:ding@gnus.org::SzOs+pG5Ncw0oEcP:00001c/N X-Face: #kKnN,xUnmKia.'[pp`;Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu;B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/22.0.90 (gnu/linux) Cancel-Lock: sha1:VKe+9Pdut0O5NjxVYKnxhKBn7DQ= X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - orlando.hostforweb.net X-AntiAbuse: Original Domain - gnus.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [47 12] X-AntiAbuse: Sender Address Domain - jpl.org X-Source: X-Source-Args: X-Source-Dir: X-Spam-Score: -2.5 (--) Precedence: bulk Original-Sender: ding-owner@lists.math.uh.edu Xref: news.gmane.org gmane.emacs.gnus.general:63920 Archived-At: >>>>> In <87odrx6724.fsf@glaurung.internal.golden-gryphon.com> >>>>> Manoj Srivastava wrote: > I have been using message-x, which binds to > message-x-tab -- which works great, most of the time. Unfortunately, > it also seems to block ecomplete -- I can see all the options that > ecomplete has found in the minibuffer, but there is no way to select > any of them. Well, I don't know how I use TAB for ecomplete (it might be because I don't use message-x). I use neither EUDC nor BBDB, but use mail-abbrevs[1] (of which database is ~/.mailrc) and ecomplete. I type `di', ecomplete shows some candidates in the minibuffer, and I choose ding@gnus.org among them using M-n, M-p and RET. Or I type `ding SPC'[2] to get ding@gnus.org using mail-abbrevs. [1] To use both mail-abbrevs and ecomplete, I use the following: --8<---------------cut here---------------start------------->8--- (setq message-mail-alias-type 'ecomplete message-self-insert-commands '(self-insert-command egg-self-insert-command)) (add-hook 'message-setup-hook (lambda nil (if (fboundp 'mail-abbrevs-setup) (mail-abbrevs-setup) (if (fboundp 'mail-aliases-setup) (mail-aliases-setup))))) --8<---------------cut here---------------end--------------->8--- [2] I also use TAB, ',', etc. instead of SPC.