Variable: projectile-file-exists-local-cache-expire
projectile-file-exists-local-cache-expire is a customizable variable
defined in projectile.el.
Value
nil
Documentation
Number of seconds before the local file existence cache expires.
Local refers to a file on a local file system.
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-local-cache-expire nil
"Number of seconds before the local file existence cache expires.
Local refers to a file on a local file system.
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")))