diff options
author | Kim F. Storm <storm@cua.dk> | 2004-12-17 15:18:02 +0000 |
---|---|---|
committer | Kim F. Storm <storm@cua.dk> | 2004-12-17 15:18:02 +0000 |
commit | bb87fbc3eeeeacdaed7780c5a349509f4dcc1541 (patch) | |
tree | 739655b6a7afb9ac8913b8f343d93679a5da83cb /lisp | |
parent | 0fa42821c9bbd07ece353a747ae7f86b03b36148 (diff) | |
download | emacs-bb87fbc3eeeeacdaed7780c5a349509f4dcc1541.tar.gz |
(dired-mode-map): Map follow-link to mouse-face.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/dired.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/dired.el b/lisp/dired.el index 19ea0768e2b..037bf282eda 100644 --- a/lisp/dired.el +++ b/lisp/dired.el @@ -1104,6 +1104,7 @@ Do so according to the former subdir alist OLD-SUBDIR-ALIST." (let ((map (make-keymap))) (suppress-keymap map) (define-key map [mouse-2] 'dired-mouse-find-file-other-window) + (define-key map [follow-link] 'mouse-face) ;; Commands to mark or flag certain categories of files (define-key map "#" 'dired-flag-auto-save-files) (define-key map "." 'dired-clean-directory) |