From e71d564387a90e7fc20d258a4d01694898c3cd35 Mon Sep 17 00:00:00 2001 From: Daanturo Date: Thu, 29 Jul 2021 09:42:42 +0700 Subject: [PATCH] Fix +vertico-file-search when separator is used instead of the Perl style. `concat` can't operate on characters. --- modules/completion/vertico/autoload/vertico.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/completion/vertico/autoload/vertico.el b/modules/completion/vertico/autoload/vertico.el index 82a51b63c..d968a6fd9 100644 --- a/modules/completion/vertico/autoload/vertico.el +++ b/modules/completion/vertico/autoload/vertico.el @@ -53,7 +53,7 @@ orderless." (pcase type (`separator (replace-regexp-in-string (regexp-quote (char-to-string separator)) - (concat "\\" separator) + (concat "\\" (char-to-string separator)) query t t)) (`perl (when (string-match-p initial query)