Variable: projectile-files-cache-expire

projectile-files-cache-expire is a customizable variable defined in projectile.el.

Value

nil

Documentation

Number of seconds before project files list cache expires.

A value of nil means the cache never expires.

This variable was added, or its default value changed, in projectile version 1.0.0.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defcustom projectile-files-cache-expire nil
  "Number of seconds before project files list cache expires.

A value of nil means the cache never expires."
  :group 'projectile
  :type '(choice (const :tag "Never expires" nil)
                 (natnum :tag "Seconds"))
  :package-version '(projectile . "1.0.0"))