From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Drew Adams" Newsgroups: gmane.emacs.devel Subject: RE: ffap bindings suggestion Date: Mon, 13 Feb 2006 07:29:27 -0800 Message-ID: References: <87r767x301.fsf-monnier+emacs@gnu.org> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1139847675 26825 80.91.229.2 (13 Feb 2006 16:21:15 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 13 Feb 2006 16:21:15 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Feb 13 17:21:14 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1F8gRV-0001qR-6G for ged-emacs-devel@m.gmane.org; Mon, 13 Feb 2006 17:20:50 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1F8gRU-00051h-P8 for ged-emacs-devel@m.gmane.org; Mon, 13 Feb 2006 11:20:48 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1F8feD-0002ue-3j for emacs-devel@gnu.org; Mon, 13 Feb 2006 10:29:53 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1F8feB-0002qI-0B for emacs-devel@gnu.org; Mon, 13 Feb 2006 10:29:52 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1F8feA-0002pT-LH for emacs-devel@gnu.org; Mon, 13 Feb 2006 10:29:50 -0500 Original-Received: from [141.146.126.228] (helo=agminet01.oracle.com) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_3DES_EDE_CBC_SHA:24) (Exim 4.52) id 1F8fid-00082Y-Sn for emacs-devel@gnu.org; Mon, 13 Feb 2006 10:34:28 -0500 Original-Received: from rgmsgw301.us.oracle.com (rgmsgw301.us.oracle.com [138.1.186.50]) by agminet01.oracle.com (Switch-3.1.7/Switch-3.1.7) with ESMTP id k1DFTmCp003609 for ; Mon, 13 Feb 2006 09:29:49 -0600 Original-Received: from rgmsgw301.us.oracle.com (localhost [127.0.0.1]) by rgmsgw301.us.oracle.com (Switch-3.1.7/Switch-3.1.7) with ESMTP id k1DFTmBF025927 for ; Mon, 13 Feb 2006 08:29:48 -0700 Original-Received: from dradamslap (dhcp-amer-whq-csvpn-gw3-141-144-81-71.vpn.oracle.com [141.144.81.71]) by rgmsgw301.us.oracle.com (Switch-3.1.7/Switch-3.1.7) with SMTP id k1DFTlTM025919 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO) for ; Mon, 13 Feb 2006 08:29:48 -0700 Original-To: X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: <87r767x301.fsf-monnier+emacs@gnu.org> Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1506 X-Brightmail-Tracker: AAAAAQAAAAI= X-Whitelist: TRUE X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:50462 Archived-At: > Perhaps I don't understand `minor-mode-map-alist' well > enough. I don't know how to use it to create some bindings > that will be used only in the minibuffer (some only for > particular kinds of completion etc.), and that > will be seen by built-in functions that work with the minibuffer. Just turn on the minor mode in the minibuffer. That means after calling completing-read, so you'll probably need to do it via minibuffer-setup-hook. Sorry, it's not clear to me. There are several different minibuffer maps, which I modify differently (they have different vanilla-Emacs bindings also). How will defining keys in a minor-mode map (even if turned on in the minibuffer) make those bindings visible in particular minibuffer maps that built-in functions expect to interact with? And how would I specify which minor-mode bindings are to be used for which minibuffer map? If this sounds confused, it's because it's not clear to me. Some more explanation would be appreciated.