diff options
author | Stefan Kangas <stefan@marxist.se> | 2022-07-08 16:13:56 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2022-07-08 16:14:17 +0200 |
commit | 58790a5266c60a935e6f6f1c3bda7c8fc7b72a6d (patch) | |
tree | e000c11aa31bcdcc8263cdf04491301b28686ee6 /lisp | |
parent | 9e0f52b7d941d55b658d39d452d84652026bdb84 (diff) | |
download | emacs-58790a5266c60a935e6f6f1c3bda7c8fc7b72a6d.tar.gz |
* lisp/dired.el (dired-jump-map): Bind also "j" to dired-jump.
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 3eff2187284..48dffa0e364 100644 --- a/lisp/dired.el +++ b/lisp/dired.el @@ -4807,6 +4807,7 @@ Interactively with prefix argument, read FILE-NAME." (defvar-keymap dired-jump-map :doc "Keymap to repeat `dired-jump'. Used in `repeat-mode'." + "j" #'dired-jump "C-j" #'dired-jump) (put 'dired-jump 'repeat-map 'dired-jump-map) |