1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
From: Nicholas D Steeves <sten@debian.org>
Date: Fri, 9 May 2025 14:45:49 -0400
Subject: use Debian fdfind path
Forwarded: not-needed
Our `fd` has been installed to /usr/bin/fdfind since rust-fd-find
7.4.0-1, and thus our find-file-in-project package needs this
integration patch to work out-of-the-box.
---
find-file-in-project.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/find-file-in-project.el b/find-file-in-project.el
index 5a08713..afebffa 100644
--- a/find-file-in-project.el
+++ b/find-file-in-project.el
@@ -184,7 +184,7 @@
:type 'boolean
:safe #'booleanp)
-(defcustom ffip-rust-fd-executable-name "fd"
+(defcustom ffip-rust-fd-executable-name "/usr/bin/fdfind"
"Rust fd executable name."
:group 'ffip
:type 'string)
|