branch: externals/exwm
commit 5a43dbecc759fccdd1adcaae5c073bdb4d88d856
Author: Steven Allen <[email protected]>
Commit: Chris Feng <[email protected]>
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.
---
exwm-input.el | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/exwm-input.el b/exwm-input.el
index 8cd54c6..e648219 100644
--- a/exwm-input.el
+++ b/exwm-input.el
@@ -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))