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-08-28T16·40+0100
committerWilliam Carroll <wpcarro@gmail.com>2020-08-28T16·40+0100
commit9c820e663ff07145f34637facd6a018e753e50b4 (patch)
tree981baa7bfa8c2f77a8a9a2c08c31e02dcfa34767 /emacs/.emacs.d/wpc/keybindings.el
parent78172233f808f60000b5aa87a1cf92746b856c0c (diff)
Restore "l" as evil-forward-char in magit-status-mode-map
Remap "l" -> "L"
Diffstat (limited to 'emacs/.emacs.d/wpc/keybindings.el')
-rw-r--r--emacs/.emacs.d/wpc/keybindings.el10
1 files changed, 10 insertions, 0 deletions
diff --git a/emacs/.emacs.d/wpc/keybindings.el b/emacs/.emacs.d/wpc/keybindings.el
index da408d55ae..1905353609 100644
--- a/emacs/.emacs.d/wpc/keybindings.el
+++ b/emacs/.emacs.d/wpc/keybindings.el
@@ -266,5 +266,15 @@
         (notmuch-search-tag '("-inbox" "-action" "-review" "+waiting")))
  "e" #'notmuch-search-archive-thread)
 
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;; magit
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+
+(general-define-key
+ :states '(normal)
+ :keymaps '(magit-status-mode-map)
+ "l" #'evil-forward-char
+ "L" #'magit-log)
+
 (provide 'keybindings)
 ;;; keybindings.el ends here