bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: ffap ^Xd vs. mailto


From: Kevin Rodgers
Subject: Re: ffap ^Xd vs. mailto
Date: Tue, 17 Jan 2006 17:21:57 -0700
User-agent: Mozilla Thunderbird 0.9 (X11/20041105)

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





reply via email to

[Prev in Thread] Current Thread [Next in Thread]