From 614aefc3399a088b1fd8ccd7b1560d5c274f6814 Mon Sep 17 00:00:00 2001 From: dvzubarev Date: Mon, 28 Feb 2022 21:06:20 +0300 Subject: [PATCH] tweak(vertico): ignore svn and hg dirs in file search --- 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 156995415..d72299679 100644 --- a/modules/completion/vertico/autoload/vertico.el +++ b/modules/completion/vertico/autoload/vertico.el @@ -27,7 +27,7 @@ (unless recursive "--maxdepth 1 ") "--null --line-buffered --color=never --max-columns=1000 " "--path-separator / --smart-case --no-heading --line-number " - "--hidden -g !.git " + "--hidden -g !.git -g !.svn -g !.hg " (mapconcat #'shell-quote-argument args " ") " .")) (prompt (if (stringp prompt) (string-trim prompt) "Search"))