meow-edit / meow

Yet another modal editing on Emacs / 猫态编辑
GNU General Public License v3.0
1.07k stars 128 forks source link

`C-[` in GUI mode does not work IN `lisp-mode` #549

Open haze opened 3 months ago

haze commented 3 months ago

In any other major mode, C-[ defined by

(meow-define-keys
  'insert
  '("ESC" . meow-insert-exit)
  '("<escape>" . meow-insert-exit))

will escape insert mode and bring me back to normal mode.

In lisp-mode, this functionality does not work.

Am I missing something here that is special about lisp-mode?