mirror of
https://github.com/emacs-exwm/exwm.git
synced 2024-11-23 21:17:59 +01:00
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:
parent
f14bd2a110
commit
5a43dbecc7
1 changed files with 3 additions and 1 deletions
|
@ -961,7 +961,9 @@ Notes:
|
||||||
(set symbol value)
|
(set symbol value)
|
||||||
(exwm-input--set-simulation-keys 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'."
|
"Commands impossible to detect with `post-command-hook'."
|
||||||
:type '(repeat function))
|
:type '(repeat function))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue