Fix "h" in grep mode

By default this is bound to describe-mode, which is easily accessible
through other means.

Signed-off-by: Rudi Grinberg <rudi.grinberg@gmail.com>
This commit is contained in:
Rudi Grinberg 2019-10-05 21:02:25 +09:00 committed by Pierre Neidhardt
parent 1c44439f34
commit 1cc109122e
1 changed files with 1 additions and 0 deletions

View File

@ -36,6 +36,7 @@
(defun evil-collection-grep-setup ()
"Set up `evil' bindings for `grep'."
(evil-collection-define-key 'normal 'grep-mode-map
"h" #'evil-backward-char
"n" 'evil-search-next
"\C-j" 'next-error-no-select
"\C-k" 'previous-error-no-select))