From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Kevin Rodgers Newsgroups: gmane.emacs.bugs Subject: Re: ffap ^Xd vs. mailto Date: Tue, 17 Jan 2006 17:21:57 -0700 Message-ID: References: <87d5iq8z9s.fsf@jidanni.org> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1137543784 11151 80.91.229.2 (18 Jan 2006 00:23:04 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 18 Jan 2006 00:23:04 +0000 (UTC) Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Wed Jan 18 01:23:02 2006 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1Ez16B-0007nf-UD for geb-bug-gnu-emacs@m.gmane.org; Wed, 18 Jan 2006 01:22:52 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ez18Y-0000Hv-48 for geb-bug-gnu-emacs@m.gmane.org; Tue, 17 Jan 2006 19:25:18 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Ez18B-0000HS-LV for bug-gnu-emacs@gnu.org; Tue, 17 Jan 2006 19:24:57 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Ez186-0000H9-LX for bug-gnu-emacs@gnu.org; Tue, 17 Jan 2006 19:24:52 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ez186-0000H4-8B for bug-gnu-emacs@gnu.org; Tue, 17 Jan 2006 19:24:50 -0500 Original-Received: from [80.91.229.2] (helo=ciao.gmane.org) by monty-python.gnu.org with esmtp (TLS-1.0:RSA_AES_128_CBC_SHA:16) (Exim 4.34) id 1Ez1Br-0000r4-N7 for bug-gnu-emacs@gnu.org; Tue, 17 Jan 2006 19:28:44 -0500 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1Ez15X-0007hB-Lb for bug-gnu-emacs@gnu.org; Wed, 18 Jan 2006 01:22:11 +0100 Original-Received: from 207.167.42.60 ([207.167.42.60]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 18 Jan 2006 01:22:11 +0100 Original-Received: from ihs_4664 by 207.167.42.60 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 18 Jan 2006 01:22:11 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-To: bug-gnu-emacs@gnu.org Original-Lines: 36 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: 207.167.42.60 User-Agent: Mozilla Thunderbird 0.9 (X11/20041105) X-Accept-Language: en-us, en In-Reply-To: <87d5iq8z9s.fsf@jidanni.org> X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:14718 Archived-At: Dan Jacobson wrote: > For ffap, if I do ^Xd and the cursor is on top of a email address, > well it should just give me the directory. If I wanted broader > interpretation I would have hit ^X^F. Like ffap.el says: ;; If you do not like these bindings, modify the variable ;; `ffap-bindings', or write your own. So: (ffap-bindings) (global-set-key "\C-xd" 'dired) or: (eval-after-load "ffap" '(setq ffap-bindings (delq (rassoc '("\C-xd" 'dired-at-point) ffap-bindings) ffap-bindings))) (ffap-bindings) The only real bug is that this comment at the top of ffap.el does not list dired-at-point: ;; ffap-bindings makes the following global key bindings: ;; ;; C-x C-f find-file-at-point (abbreviated as ffap) ;; C-x 4 f ffap-other-window ;; C-x 5 f ffap-other-frame ;; S-mouse-3 ffap-at-mouse ;; C-S-mouse-3 ffap-menu -- Kevin Rodgers