From 8cedbc3b5dcc5eb9fbfed7843200c5300527f37f Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 22 Oct 2019 12:40:16 -0400 Subject: [PATCH] Prioritize fdfind over fd #1931 Since fd is used by another program on Ubuntu. --- core/core-projects.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core-projects.el b/core/core-projects.el index 27de7a6f1..01654e0d6 100644 --- a/core/core-projects.el +++ b/core/core-projects.el @@ -11,7 +11,7 @@ Emacs.") "If non-nil, non-projects are purged from the cache on `kill-emacs-hook'.") (defvar doom-projectile-fd-binary - (or (cl-find-if #'executable-find '("fd" "fdfind")) + (or (cl-find-if #'executable-find '("fdfind" "fd")) "fd") "name of `fd-find' executable binary")