Add tools/taskrunner module

Co-authored-by: chrunchyjesus <chrunchyjesus@users.noreply.github.com>
This commit is contained in:
Seong Yong-ju 2020-05-11 23:25:46 +09:00
parent 1529dcaaf5
commit 3f21d8267a
7 changed files with 84 additions and 3 deletions

View file

@ -0,0 +1,9 @@
;;; 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))))