commit 875d2715befaf0dbb755c6f1096f124b33dd8b39
parent 2fc15ae1e55931b48c8d97fade641d5f85a0534e
Author: KΓ©vin Le Gouguec <kevin.legouguec@gmail.com>
Date: Sat, 7 Aug 2021 19:32:40 +0200
Tweak Magit bindings
I keep pressing "f" for "file-related commands", instead of "c" for
"current file-related commands". Cave in and move "f" to "C-f".
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.emacs b/.emacs
@@ -175,8 +175,8 @@
(my/define-prefix-command my/magit-map
"Keymap for Magit commands."
- '(("c" magit-file-dispatch)
- ("f" magit-find-file)
+ '(("f" magit-file-dispatch)
+ ("\C-f" magit-find-file)
("g" magit-status)
("x" magit-dispatch)))