Add tools/taskrunner module
Co-authored-by: chrunchyjesus <chrunchyjesus@users.noreply.github.com>
This commit is contained in:
parent
1529dcaaf5
commit
3f21d8267a
7 changed files with 84 additions and 3 deletions
9
modules/tools/taskrunner/autoload.el
Normal file
9
modules/tools/taskrunner/autoload.el
Normal 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))))
|
Loading…
Add table
Add a link
Reference in a new issue