From c1890307a688ded90ba826da39955dcd0d16387b Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 13 Jun 2017 17:52:06 +0200 Subject: [PATCH] Fix precedence of popup rules More general rules should be lower in the list. --- core/core-popups.el | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/core/core-popups.el b/core/core-popups.el index 6aef44f2a..0cacb3773 100644 --- a/core/core-popups.el +++ b/core/core-popups.el @@ -73,6 +73,12 @@ is enabled/disabled.'") ("^\\*doom:" :regexp t :size 0.35 :noesc t :select t :modeline t) ("^\\*doom " :regexp t :noselect t :autokill t :autoclose t) ;; built-in (emacs) + ("*info*" :size 0.5 :select t :autokill t) + ("*Backtrace*" :size 20 :noselect t) + ("*Warnings*" :size 8 :noselect t) + ("*Messages*" :size 12 :noselect t) + ("*Help*" :size 0.3) + ("^\\*.*Shell Command.*\\*$" :regexp t :size 20 :noselect t :autokill t) (apropos-mode :size 0.3 :autokill t :autoclose t) (Buffer-menu-mode :size 20 :autokill t) (comint-mode :noesc t) @@ -80,12 +86,6 @@ is enabled/disabled.'") (profiler-report-mode :size 0.3 :regexp t :autokill t :modeline minimal) (tabulated-list-mode :noesc t) (special-mode :noselect t :autokill t :autoclose t) - ("*info*" :size 0.5 :select t :autokill t) - ("*Backtrace*" :size 20 :noselect t) - ("*Warnings*" :size 5 :noselect t :autokill t :autoclose t) - ("*Messages*" :size 12 :noselect t :autokill nil) - ("*Help*" :size 0.3) - ("^\\*.*Shell Command.*\\*$" :regexp t :size 20 :noselect t :autokill t) ("^\\*" :regexp t :noselect t :autokill t) ("^ \\*" :regexp t :size 12 :noselect t :autokill t :autoclose t)))