summaryrefslogtreecommitdiff
path: root/.emacs
diff options
context:
space:
mode:
authorKévin Le Gouguec <kevin.legouguec@gmail.com>2021-08-07 19:32:40 +0200
committerKévin Le Gouguec <kevin.legouguec@gmail.com>2021-08-07 19:32:40 +0200
commit875d2715befaf0dbb755c6f1096f124b33dd8b39 (patch)
tree408d22919e9fb5f63cfae6d6dd949e90c410733a /.emacs
parent2fc15ae1e55931b48c8d97fade641d5f85a0534e (diff)
downloaddotfiles-875d2715befaf0dbb755c6f1096f124b33dd8b39.tar.xz
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 (limited to '.emacs')
-rw-r--r--.emacs4
1 files changed, 2 insertions, 2 deletions
diff --git a/.emacs b/.emacs
index cce77e3..95514e7 100644
--- 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)))