From c12e9afbaf98039f9c5af99d855e4ff7fe9879dc Mon Sep 17 00:00:00 2001 From: Steve Purcell Date: Wed, 6 Nov 2024 14:34:57 +0000 Subject: [PATCH] Don't keep adding the same keybinding to eat-semi-char-non-bound-keys Fixes #867 --- lisp/init-terminals.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/init-terminals.el b/lisp/init-terminals.el index 2bf099ea23..a6829179b9 100644 --- a/lisp/init-terminals.el +++ b/lisp/init-terminals.el @@ -15,7 +15,7 @@ (with-eval-after-load 'eat (custom-set-variables `(eat-semi-char-non-bound-keys - (quote ,(cons [?\e ?w] eat-semi-char-non-bound-keys))))) + (quote ,(cons [?\e ?w] (cl-remove [?\e ?w] eat-semi-char-non-bound-keys :test 'equal)))))) (defcustom sanityinc/eat-map (let ((map (make-sparse-keymap)))