Restore "l" as evil-forward-char in magit-status-mode-map

Remap "l" -> "L"
This commit is contained in:
William Carroll 2020-08-28 17:40:24 +01:00
parent 78172233f8
commit 9c820e663f

View file

@ -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