Variable: projectile--remote-fd-executable-cache
projectile--remote-fd-executable-cache is a variable defined in
projectile.el.
Value
#s(hash-table test equal)
Documentation
Per-host cache of fd availability on remote (TRAMP) hosts.
Keys are the prefixes returned by file-remote-p (e.g.
/ssh:user@host:); values are either the executable name (a string)
or nil for hosts where neither fd nor fdfind is available. The
sentinel unset distinguishes "never looked up" from "looked up
and unavailable".
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defvar projectile--remote-fd-executable-cache (make-hash-table :test 'equal)
"Per-host cache of fd availability on remote (TRAMP) hosts.
Keys are the prefixes returned by `file-remote-p' (e.g.
`/ssh:user@host:'); values are either the executable name (a string)
or nil for hosts where neither `fd' nor `fdfind' is available. The
sentinel `unset' distinguishes \"never looked up\" from \"looked up
and unavailable\".")