[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/exwm 5a43dbe 2/2: Add minibuffer-keyboard-quit to the d
From: |
Chris Feng |
Subject: |
[elpa] externals/exwm 5a43dbe 2/2: Add minibuffer-keyboard-quit to the default pre-post-command-blacklist |
Date: |
Mon, 7 Oct 2019 08:22:34 -0400 (EDT) |
branch: externals/exwm
commit 5a43dbecc759fccdd1adcaae5c073bdb4d88d856
Author: Steven Allen <address@hidden>
Commit: Chris Feng <address@hidden>
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))