thoom-emacs: Fix ESC issue with meow

This commit is contained in:
2022-10-03 14:04:11 -07:00
parent a0ef85af18
commit 3062050672

View File

@@ -72,6 +72,8 @@
'("0" . meow-digit-argument) '("0" . meow-digit-argument)
'("/" . meow-keypad-describe-key) '("/" . meow-keypad-describe-key)
'("?" . meow-cheatsheet)) '("?" . meow-cheatsheet))
(meow-define-keys 'insert
'("ESC" . meow-insert-exit))
(meow-normal-define-key (meow-normal-define-key
'("0" . meow-expand-0) '("0" . meow-expand-0)
'("9" . meow-expand-9) '("9" . meow-expand-9)
@@ -133,7 +135,8 @@
'("Y" . meow-sync-grab) '("Y" . meow-sync-grab)
'("z" . meow-pop-selection) '("z" . meow-pop-selection)
'("'" . repeat) '("'" . repeat)
'("/" . meow-comment))) '("/" . meow-comment)
'("ESC" . ignore)))
(require 'meow) (require 'meow)
(meow-setup) (meow-setup)
(meow-global-mode 1) (meow-global-mode 1)