additional bindings in ripgrep mode

This commit is contained in:
Siddhartha 2020-12-12 19:06:39 -08:00 committed by James N
parent 6ef4dd509f
commit 66913666f6
1 changed files with 6 additions and 1 deletions

View File

@ -37,8 +37,13 @@
"Set up `evil' bindings for `ripgrep'."
(evil-collection-define-key 'normal 'ripgrep-search-mode-map
"n" 'evil-search-next
"\C-k" 'previous-error-no-select
"\C-j" 'next-error-no-select
"\C-k" 'previous-error-no-select))
"gk" 'previous-error-no-select
"gj" 'next-error-no-select
"{" 'compilation-previous-file
"}" 'compilation-next-file
"i" 'wgrep-change-to-wgrep-mode))
(provide 'evil-collection-ripgrep)