From 95e0b43012f39959ec291ab4448e127088285147 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 12 Aug 2024 19:46:40 -0400 Subject: [PATCH] fix: "Malformed pattern in custom ignore file .project" error I introduced '--ignore-file .project' to `projectile-git-fd-args` in 4fcf332 expecting fd to ignore the file if it didn't exist, but it throws an error if it doesn't, causing it to throw these errors in any project without a .project file. Amend: 4fcf33274915 --- lisp/doom-projects.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/doom-projects.el b/lisp/doom-projects.el index b59c40903..b3d608551 100644 --- a/lisp/doom-projects.el +++ b/lisp/doom-projects.el @@ -193,7 +193,7 @@ And if it's a function, evaluate it." (put 'projectile-git-submodule-command 'initial-value projectile-git-submodule-command) (setq projectile-git-submodule-command nil ;; Include and follow symlinks in file listings. - projectile-git-fd-args (concat "-L -tl " projectile-git-fd-args " --ignore-file .project") + projectile-git-fd-args (concat "-L -tl " projectile-git-fd-args) projectile-indexing-method 'hybrid projectile-generic-command (lambda (_)