From 59c739568bece78df5279b71f08a48932e5963f2 Mon Sep 17 00:00:00 2001 From: rearman Date: Mon, 3 Nov 2025 09:38:14 -0500 Subject: [PATCH] Add binding for copying with datestamp Dired copy is "C", so "M-C" for my special copy with mod time in filename is mnemonic. --- init.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/init.el b/init.el index fdb1073..7d324a2 100644 --- a/init.el +++ b/init.el @@ -101,6 +101,9 @@ #'(lambda () (interactive) (find-alternate-file ".."))) + (keymap-set dired-mode-map + "M-C" + #'re/copy-with-mod-time) (dired-hide-details-mode t)))) ;; Bookmarks -- 2.39.5