unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* ffap ^Xd vs. mailto
@ 2006-01-17 18:50 Dan Jacobson
  2006-01-18  0:21 ` Kevin Rodgers
  0 siblings, 1 reply; 2+ messages in thread
From: Dan Jacobson @ 2006-01-17 18:50 UTC (permalink / raw


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.

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: ffap ^Xd vs. mailto
  2006-01-17 18:50 ffap ^Xd vs. mailto Dan Jacobson
@ 2006-01-18  0:21 ` Kevin Rodgers
  0 siblings, 0 replies; 2+ messages in thread
From: Kevin Rodgers @ 2006-01-18  0:21 UTC (permalink / raw


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

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2006-01-18  0:21 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-01-17 18:50 ffap ^Xd vs. mailto Dan Jacobson
2006-01-18  0:21 ` Kevin Rodgers

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).