Add minibuffer-keyboard-quit to the default pre-post-command-blacklist

* exwm-input.el (exwm-input-pre-post-command-blacklist): Add
`minibuffer-keyboard-quit' to the blacklist. This is invoked when the user
aborts a the minibuffer with C-g.
This commit is contained in:
Steven Allen 2019-10-06 08:39:36 +09:00 committed by Chris Feng
parent f14bd2a110
commit 5a43dbecc7

View file

@ -961,7 +961,9 @@ Notes:
(set symbol value)
(exwm-input--set-simulation-keys value)))
(defcustom exwm-input-pre-post-command-blacklist '(exit-minibuffer)
(defcustom exwm-input-pre-post-command-blacklist '(exit-minibuffer
abort-recursive-edit
minibuffer-keyboard-quit)
"Commands impossible to detect with `post-command-hook'."
:type '(repeat function))