From 9b0d333a66da5cc3bd31eaa6f1457be78733392b Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 24 Sep 2017 18:40:50 +0200 Subject: [PATCH] Close popups in doom/kill-all-buffers --- core/autoload/buffers.el | 1 + 1 file changed, 1 insertion(+) diff --git a/core/autoload/buffers.el b/core/autoload/buffers.el index 4b4b70bca..bc3c89f44 100644 --- a/core/autoload/buffers.el +++ b/core/autoload/buffers.el @@ -254,6 +254,7 @@ regex PATTERN. Returns the number of killed buffers." If PROJECT-P, kill all buffers that belong to the current project." (interactive "P") + (doom/popup-close-all t) (let ((buffers (if project-p (doom-project-buffer-list) (doom-buffer-list)))) (mapc #'doom-kill-buffer-and-windows buffers) (unless (doom-real-buffer-p)