From dd7af506e3d2dd06e81584c2b90dcc107934fde0 Mon Sep 17 00:00:00 2001 From: Rudi Grinberg Date: Sun, 15 Dec 2019 00:13:09 +0700 Subject: [PATCH] Fix regex for detecting compilation buffer *Compilation* and *compilation* are both allowed Signed-off-by: Rudi Grinberg --- modules/ui/popup/config.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ui/popup/config.el b/modules/ui/popup/config.el index 4a6796d89..5111a7311 100644 --- a/modules/ui/popup/config.el +++ b/modules/ui/popup/config.el @@ -131,7 +131,7 @@ prevent the popup(s) from messing up the UI (or vice versa)." ("^ \\*" :slot 1 :vslot -1 :size +popup-shrink-to-fit))) (when (featurep! +defaults) '(("^\\*Completions" :ignore t) - ("^\\*\\(?:Compil\\(?:ation\\|e-Log\\)\\|Messages\\)" + ("^\\*\\(?:[Cc]ompil\\(?:ation\\|e-Log\\)\\|Messages\\)" :vslot -2 :size 0.3 :autosave t :quit t :ttl nil) ("^\\*\\(?:doom \\|Pp E\\)" ; transient buffers (no interaction required) :vslot -3 :size +popup-shrink-to-fit :autosave t :select ignore :quit t :ttl 0)