diff options
author | William Carroll <wpcarro@gmail.com> | 2020-08-28T16·40+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-08-28T16·40+0100 |
commit | 9c820e663ff07145f34637facd6a018e753e50b4 (patch) | |
tree | 981baa7bfa8c2f77a8a9a2c08c31e02dcfa34767 /emacs | |
parent | 78172233f808f60000b5aa87a1cf92746b856c0c (diff) |
Restore "l" as evil-forward-char in magit-status-mode-map
Remap "l" -> "L"
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/.emacs.d/wpc/keybindings.el | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/emacs/.emacs.d/wpc/keybindings.el b/emacs/.emacs.d/wpc/keybindings.el index da408d55ae3e..1905353609e2 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 |