about summary refs log tree commit diff
path: root/exwm-input.el
diff options
context:
space:
mode:
authorSteven Allen <steven@stebalien.com>2019-10-05T23·39+0900
committerChris Feng <chris.w.feng@gmail.com>2019-10-07T00·00+0000
commit5a43dbecc759fccdd1adcaae5c073bdb4d88d856 (patch)
tree5607d0af6ea9df9dd4e8bad81c7458a340617c2f /exwm-input.el
parentf14bd2a110af927293c23e8ff7aa1e2287120b0d (diff)
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.
Diffstat (limited to 'exwm-input.el')
-rw-r--r--exwm-input.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/exwm-input.el b/exwm-input.el
index 8cd54c69b8..e648219388 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))