From 0e0fa37b2219c28be7be21af0697866300c951c7 Mon Sep 17 00:00:00 2001 From: Rudi Grinberg Date: Mon, 28 Oct 2019 12:20:35 +0900 Subject: [PATCH] [popup] ignore send mail buffers [C-x m] should not appear in a popup. Signed-off-by: Rudi Grinberg --- modules/ui/popup/config.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/ui/popup/config.el b/modules/ui/popup/config.el index 391a266d8..795ac109f 100644 --- a/modules/ui/popup/config.el +++ b/modules/ui/popup/config.el @@ -159,7 +159,8 @@ prevent the popup(s) from messing up the UI (or vice versa)." '(("^\\*Warnings" :vslot 99 :size 0.25) ("^\\*Backtrace" :vslot 99 :size 0.4 :quit nil) ("^\\*CPU-Profiler-Report " :side bottom :vslot 100 :slot 1 :height 0.4 :width 0.5 :quit nil) - ("^\\*Memory-Profiler-Report " :side bottom :vslot 100 :slot 2 :height 0.4 :width 0.5 :quit nil))) + ("^\\*Memory-Profiler-Report " :side bottom :vslot 100 :slot 2 :height 0.4 :width 0.5 :quit nil) + ("^\\*unsent mail*" :ignore t))) (add-hook 'doom-init-ui-hook #'+popup-mode 'append)