compile: remove g binding

We have to remove this binding from all modes (instead of just the normal
mode) so that we don't fall back to the Emacs binding. Instead we will fall
through this keymap and use the bindings found on other keymaps
This commit is contained in:
Morgan Smith 2020-10-22 12:49:28 -04:00 committed by Pierre Neidhardt
parent 8370d6bd1c
commit 52b6479a8f
1 changed files with 3 additions and 0 deletions

View File

@ -40,6 +40,9 @@
(dolist (keymap evil-collection-compile-maps)
(evil-collection-define-key nil keymap
"g" nil)
(evil-collection-define-key 'normal keymap
(kbd "RET") 'compile-goto-error