From 463d0da41139ccf48c9c0c9522c93041769dfcdb Mon Sep 17 00:00:00 2001 From: Chris Feng Date: Mon, 19 Oct 2015 14:59:58 +0800 Subject: Close the (possible) active minibuffer when switching workspace * exwm-workspace.el (exwm-workspace-switch): An active minibuffer on another workspace might cause problems for input. Closing it should be sufficient. --- exwm-workspace.el | 2 ++ 1 file changed, 2 insertions(+) (limited to 'exwm-workspace.el') diff --git a/exwm-workspace.el b/exwm-workspace.el index 566ea539b641..0813c89219ac 100644 --- a/exwm-workspace.el +++ b/exwm-workspace.el @@ -138,6 +138,8 @@ The optional FORCE option is for internal use only." (setq x (/ w 2) y (/ h 2))) (set-mouse-pixel-position frame x y))) + ;; Close the (possible) active minibuffer + (when (active-minibuffer-window) (abort-recursive-edit)) (setq default-minibuffer-frame frame) ;; Hide windows in other workspaces by preprending a space (unless exwm-workspace-show-all-buffers -- cgit 1.4.1