Variable: projectile-file-exists-remote-cache-expire
projectile-file-exists-remote-cache-expire is a customizable variable
defined in projectile.el.
Value
300
Documentation
Number of seconds before the remote file existence cache expires.
Remote refers to a file on a remote file system such as tramp.
A value of nil disables this cache.
See projectile-file-exists-p for details.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
(defcustom projectile-file-exists-remote-cache-expire (* 5 60)
"Number of seconds before the remote file existence cache expires.
Remote refers to a file on a remote file system such as tramp.
A value of nil disables this cache.
See `projectile-file-exists-p' for details."
:group 'projectile
:type '(choice (const :tag "Disabled" nil)
(integer :tag "Seconds")))