about summary refs log tree commit diff
path: root/emacs/.emacs.d/wpc/keybindings.el
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-10-04T15·23+0100
committerWilliam Carroll <wpcarro@gmail.com>2020-10-04T15·23+0100
commit48d9a7025362cba710cca5b2a94d6e9e7e262048 (patch)
treece31e20236a0691f26dec1d35ba27e315f1d2903 /emacs/.emacs.d/wpc/keybindings.el
parentf3ee628a4cbecfda002928db09e4c3e9d223ba87 (diff)
Extend "l" -> "L" KBD remapping for magit-{log,revision}-mode-map
Thankfully `general` made this change super easy and maintainable to support.
Diffstat (limited to 'emacs/.emacs.d/wpc/keybindings.el')
-rw-r--r--emacs/.emacs.d/wpc/keybindings.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/emacs/.emacs.d/wpc/keybindings.el b/emacs/.emacs.d/wpc/keybindings.el
index 2563b15235..9f4ad78938 100644
--- a/emacs/.emacs.d/wpc/keybindings.el
+++ b/emacs/.emacs.d/wpc/keybindings.el
@@ -330,7 +330,9 @@
 
 (general-define-key
  :states '(normal)
- :keymaps '(magit-status-mode-map)
+ :keymaps '(magit-status-mode-map
+            magit-log-mode-map
+            magit-revision-mode-map)
  "l" #'evil-forward-char
  "L" #'magit-log)