Variable: projectile-last-task-map

projectile-last-task-map is a variable defined in projectile.el.

Value

#s(hash-table test equal)

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.")