doomemacs/modules/tools/taskrunner/autoload.el
Seong Yong-ju 3f21d8267a Add tools/taskrunner module
Co-authored-by: chrunchyjesus <chrunchyjesus@users.noreply.github.com>
2020-05-18 16:26:32 +09:00

10 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))))