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.
This variable was added, or its default value changed, in projectile version 0.11.0.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/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)
(natnum :tag "Seconds"))
:package-version '(projectile . "0.11.0"))