From 4071d27263f31c240d33732a782979140dd0866b Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sat, 18 Jun 2022 08:07:21 +0200 Subject: [PATCH] fix(vertico): popup rule for embark export buffers Embark Export buffers have changed their name from "*Embark Export Grep ...*" to "*Embark Export: ...*". Fix: #6465 --- modules/completion/vertico/config.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/completion/vertico/config.el b/modules/completion/vertico/config.el index 64bfe33e4..e72db3bb6 100644 --- a/modules/completion/vertico/config.el +++ b/modules/completion/vertico/config.el @@ -234,7 +234,7 @@ orderless." :config (require 'consult) - (set-popup-rule! "^\\*Embark Export Grep" :size 0.35 :ttl 0 :quit nil) + (set-popup-rule! "^\\*Embark Export:" :size 0.35 :ttl 0 :quit nil) (defadvice! +vertico--embark-which-key-prompt-a (fn &rest args) "Hide the which-key indicator immediately when using the completing-read prompter."