9 lines
326 B
EmacsLisp
9 lines
326 B
EmacsLisp
;;; app/taskrunner/autoload.el -*- lexical-binding: t; -*-
|
|
|
|
;;;###autoload
|
|
(defun +taskrunner/project-tasks ()
|
|
"Invokes `ivy-taskrunner' or `helm-tasksrunner', depending on which is
|
|
available."
|
|
(interactive)
|
|
(cond ((featurep! :completion ivy) (ivy-taskrunner))
|
|
((featurep! :completion helm) (helm-taskrunner))))
|