Skip to content

Commit

Permalink
Don't keep adding the same keybinding to eat-semi-char-non-bound-keys
Browse files Browse the repository at this point in the history
Fixes #867
  • Loading branch information
purcell committed Nov 6, 2024
1 parent d45c7cc commit c12e9af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lisp/init-terminals.el
Original file line number Diff line number Diff line change
Expand Up @@ -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)))
Expand Down

0 comments on commit c12e9af

Please sign in to comment.