Variable: projectile-last-task-map
projectile-last-task-map is a variable defined in projectile.el.
Value
#s(hash-table size 65 test equal rehash-size 1.5 rehash-threshold 0.8125 data
())
Documentation
The last task run per project, indexed by project root.
Each value is a cons of the task name and the command that was run,
which is what projectile-repeat-last-task re-runs.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defvar projectile-last-task-map (make-hash-table :test 'equal)
"The last task run per project, indexed by project root.
Each value is a cons of the task name and the command that was run,
which is what `projectile-repeat-last-task' re-runs.")