Skip to content

Commit

Permalink
Merge pull request #5312 from daanturo/fix-+vertico-file-search
Browse files Browse the repository at this point in the history
Fix +vertico-file-search when separator is used
  • Loading branch information
hlissner committed Jul 29, 2021
2 parents 5610774 + e71d564 commit f9b47ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/completion/vertico/autoload/vertico.el
Expand Up @@ -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)
Expand Down

0 comments on commit f9b47ed

Please sign in to comment.