Variable: projectile-dashboard-recent-files
projectile-dashboard-recent-files is a customizable variable defined
in projectile.el.
Value
10
Documentation
How many recently visited files projectile-dashboard lists.
The files are ranked by frecency, so this is the length of the "what
was I working on" list, not a history limit - that's
projectile-frecency-max-files.
This variable was added, or its default value changed, in projectile version 3.3.0.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defcustom projectile-dashboard-recent-files 10
"How many recently visited files `projectile-dashboard' lists.
The files are ranked by frecency, so this is the length of the \"what
was I working on\" list, not a history limit - that's
`projectile-frecency-max-files'."
:group 'projectile
:type 'natnum
:package-version '(projectile . "3.3.0"))