mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
Add interactive form to +default/project-tasks
It is required for key-bound commands. Also added a docstring.
This commit is contained in:
@ -87,5 +87,7 @@ If ARG (universal argument), runs `compile' from the current directory."
|
|||||||
|
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
(defun +default/project-tasks ()
|
(defun +default/project-tasks ()
|
||||||
|
"Invokes `+ivy/tasks' or `+helm/tasks', depending on which is available."
|
||||||
|
(interactive)
|
||||||
(cond ((featurep! :completion ivy) (+ivy/tasks)
|
(cond ((featurep! :completion ivy) (+ivy/tasks)
|
||||||
(featurep! :completion helm) (+helm/tasks))))
|
(featurep! :completion helm) (+helm/tasks))))
|
||||||
|
Reference in New Issue
Block a user