Fix precedence of popup rules

More general rules should be lower in the list.
This commit is contained in:
Henrik Lissner 2017-06-13 17:52:06 +02:00
parent 1678bf8382
commit c1890307a6
No known key found for this signature in database
GPG Key ID: 5F6C0EA160557395

View File

@ -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)))