From 6e30aa4395ce723cd0488acaf390d417290bc2ec Mon Sep 17 00:00:00 2001 From: Sergey Nizovtsev Date: Wed, 14 Oct 2020 21:17:22 +0300 Subject: [PATCH] popup: add rule for list-processes Its content is typically thrown away after a quick glance, so make it popup. Signed-off-by: Sergey Nizovtsev --- 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 47efdbabc..e2b183f43 100644 --- a/modules/ui/popup/config.el +++ b/modules/ui/popup/config.el @@ -161,7 +161,8 @@ prevent the popup(s) from messing up the UI (or vice versa)." ("^\\*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) - ("^\\*\\(?:Proced\\|timer-list\\|Process List\\|Abbrevs\\|Output\\|Occur\\|unsent mail\\)\\*" :ignore t))) + ("^\\*Process List\\*" :side bottom :vslot 101 :size 0.25 :select t :quit t) + ("^\\*\\(?:Proced\\|timer-list\\|Abbrevs\\|Output\\|Occur\\|unsent mail\\)\\*" :ignore t))) (add-hook 'doom-init-ui-hook #'+popup-mode 'append)