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.

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-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)
                 (natnum :tag "Seconds"))
  :package-version '(projectile . "0.11.0"))