Variable: projectile-git-use-fd
projectile-git-use-fd is a customizable variable defined in
projectile.el.
Value
nil
Documentation
Non-nil means use fd to implement git ls-files.
This may change Projectile's performance in large Git repositories depending on your system, but it will also work around the Git behavior that causes deleted files to still be shown in Projectile listings until their deletions are staged.
This variable was added, or its default value changed, in projectile version 2.8.0.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
(defcustom projectile-git-use-fd (when projectile-fd-executable t)
"Non-nil means use fd to implement git ls-files.
This may change Projectile's performance in large Git repositories
depending on your system, but it will also work around the Git behavior
that causes deleted files to still be shown in Projectile listings until
their deletions are staged."
:type 'boolean
:package-version '(projectile . "2.8.0"))