Fix popup ignore rules

* Process Lis is without a space
* Escape trailing star
* Combine all rules
This commit is contained in:
Rudi Grinberg 2019-12-04 09:46:27 +07:00
parent 0bd0ac4ab9
commit 894c4e1855

View file

@ -158,13 +158,7 @@ prevent the popup(s) from messing up the UI (or vice versa)."
("^\\*Backtrace" :vslot 99 :size 0.4 :quit nil) ("^\\*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) ("^\\*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)
("^\\*Proced*" :ignore t) ("^\\*\\(?:Proced\\|timer-list\\|Process List\\|Abbrevs\\|Output\\|Occur\\|unsent mail\\)\\*" :ignore t)))
("^\\*timer-list*" :ignore t)
("^\\*Process-List*" :ignore t)
("^\\*Abbrevs*" :ignore t)
("^\\*Output*" :ignore t)
("^\\*Occur*" :ignore t)
("^\\*unsent mail*" :ignore t)))
(add-hook 'doom-init-ui-hook #'+popup-mode 'append) (add-hook 'doom-init-ui-hook #'+popup-mode 'append)