Variable: projectile-fd-executable

projectile-fd-executable is a customizable variable defined in projectile.el.

Value

nil

Documentation

Path or name of fd executable used by Projectile if enabled.

Nil means fd is not installed or should not be used.

Note: this variable holds the locally-detected executable. For projects on a TRAMP host fd is detected separately on the remote (and cached per host), since whatever is on the local box may not exist on the remote. See projectile-fd-executable-for.

This variable was added, or its default value changed, in projectile version 2.8.0.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defcustom projectile-fd-executable
  (cond
   ((executable-find "fdfind") "fdfind")
   ((executable-find "fd") "fd"))
  "Path or name of fd executable used by Projectile if enabled.
Nil means fd is not installed or should not be used.

Note: this variable holds the locally-detected executable.  For
projects on a TRAMP host fd is detected separately on the remote (and
cached per host), since whatever is on the local box may not exist on
the remote.  See `projectile-fd-executable-for'."
  :group 'projectile
  :type '(choice (const :tag "Don't use fd" nil)
                 (string :tag "Path or name"))
  :package-version '(projectile . "2.8.0"))