From 98c10df33c5b581ab088953bbdccc81592919a2b Mon Sep 17 00:00:00 2001 From: Blake Romero Date: Wed, 9 Jul 2025 19:38:29 +0100 Subject: Add global file action kebindings --- emacs-config.org | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/emacs-config.org b/emacs-config.org index c567133..ca05949 100644 --- a/emacs-config.org +++ b/emacs-config.org @@ -76,3 +76,10 @@ Enable which-key that displays a pop-up window of posisble keybindings sequences #+begin_src elisp (which-key-mode) #+end_src + +* Global Keybindings +File actions. +#+begin_src elisp + (keymap-global-set "C-x x R" #'rename-visited-file) + (keymap-global-set "C-x x D" #'delete-file) +#+end_src -- cgit