simple: remove bindings that are in the way

This commit is contained in:
Morgan Smith 2020-10-20 07:36:05 -04:00 committed by Pierre Neidhardt
parent 25af4855ea
commit 8370d6bd1c
1 changed files with 5 additions and 8 deletions

View File

@ -39,14 +39,11 @@
"Set up `evil' bindings for `simple'."
(evil-collection-define-key nil 'special-mode-map
"g" nil)
(evil-collection-define-key '(normal visual) 'special-mode-map
"q" 'quit-window
" " 'scroll-up-command
"g?" 'describe-mode
"h" 'evil-backward-char
"gr" 'revert-buffer))
"g" nil
"gr" 'revert-buffer
"h" nil
"?" nil
"0" nil))
(provide 'evil-collection-simple)
;;; evil-collection-simple.el ends here