Function: projectile-tasks-from-taskfile

projectile-tasks-from-taskfile is a byte-compiled function defined in projectile.el.

Signature

(projectile-tasks-from-taskfile PROJECT-ROOT)

Documentation

Return the tasks of the go-task Taskfile in PROJECT-ROOT.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile-tasks-from-taskfile (project-root)
  "Return the tasks of the go-task Taskfile in PROJECT-ROOT."
  (when-let* ((file (projectile--first-task-file
                     project-root projectile--taskfile-names)))
    (projectile--tasks-named (projectile--taskfile-task-names file)
                             "task" "task %s")))