From: Stefan Kangas Date: Tue, 18 Mar 2025 22:11:01 +0000 (+0100) Subject: ; Minor keymap cleanup in dired.el X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=65ec8320ffaac15b50d57a6aac936c7a3bfe6fbd;p=emacs.git ; Minor keymap cleanup in dired.el * lisp/dired.el: (dired-context-menu): Prefer keymap-set. (dired-click-to-select-map): Move key definition inside defvar-keymap. (cherry picked from commit ec9290eb80253cc97990788aab588a15cb35b664) --- diff --git a/lisp/dired.el b/lisp/dired.el index f5348107832..b6f4236bcf3 100644 --- a/lisp/dired.el +++ b/lisp/dired.el @@ -1182,7 +1182,7 @@ If a directory or nothing is found at point, return nil." (not (file-directory-p file-name))) file-name))) -;;;###autoload (define-key ctl-x-map "d" 'dired) +;;;###autoload (keymap-set ctl-x-map "d" #'dired) ;;;###autoload (defun dired (dirname &optional switches) "\"Edit\" directory DIRNAME--delete, rename, print, etc. some files in it. @@ -1211,21 +1211,21 @@ If DIRNAME is already in a Dired buffer, that buffer is used without refresh." (interactive (dired-read-dir-and-switches "")) (pop-to-buffer-same-window (dired-noselect dirname switches))) -;;;###autoload (define-key ctl-x-4-map "d" 'dired-other-window) +;;;###autoload (keymap-set ctl-x-4-map "d" #'dired-other-window) ;;;###autoload (defun dired-other-window (dirname &optional switches) "\"Edit\" directory DIRNAME. Like `dired' but select in another window." (interactive (dired-read-dir-and-switches " in other window")) (switch-to-buffer-other-window (dired-noselect dirname switches))) -;;;###autoload (define-key ctl-x-5-map "d" 'dired-other-frame) +;;;###autoload (keymap-set ctl-x-5-map "d" #'dired-other-frame) ;;;###autoload (defun dired-other-frame (dirname &optional switches) "\"Edit\" directory DIRNAME. Like `dired' but make a new frame." (interactive (dired-read-dir-and-switches " in other frame")) (switch-to-buffer-other-frame (dired-noselect dirname switches))) -;;;###autoload (define-key tab-prefix-map "d" 'dired-other-tab) +;;;###autoload (keymap-set tab-prefix-map "d" #'dired-other-tab) ;;;###autoload (defun dired-other-tab (dirname &optional switches) "\"Edit\" directory DIRNAME. Like `dired' but make a new tab." @@ -2675,7 +2675,7 @@ Do so according to the former subdir alist OLD-SUBDIR-ALIST." (defun dired-context-menu (menu click) "Populate MENU with Dired mode commands at CLICK." (when (mouse-posn-property (event-start click) 'dired-filename) - (define-key menu [dired-separator] menu-bar-separator) + (keymap-set menu "" menu-bar-separator) (let* ((filename (save-excursion (mouse-set-point click) (dired-get-filename nil t))) @@ -5300,10 +5300,8 @@ Interactively with prefix argument, read FILE-NAME." ;;; Click-To-Select mode (defvar-keymap dired-click-to-select-map - :doc "Keymap placed on files under `dired-click-to-select' mode.") - -(define-key dired-click-to-select-map [mouse-2] - #'dired-mark-for-click) + :doc "Keymap placed on files under `dired-click-to-select' mode." + "" #'dired-mark-for-click) (defun dired-mark-for-click (event) "Mark or unmark the file underneath the mouse click at EVENT.