mirror of
https://github.com/doomemacs/doomemacs
synced 2025-09-20 16:11:07 -05:00
config/default: invoke magit-todos-list on SPC p t
Before falling back to +ivy/tasks and helm/tasks (not implemented yet).
This commit is contained in:
@@ -77,7 +77,9 @@ If ARG (universal argument), runs `compile' from the current directory."
|
|||||||
(defun +default/project-tasks ()
|
(defun +default/project-tasks ()
|
||||||
"Invokes `+ivy/tasks' or `+helm/tasks', depending on which is available."
|
"Invokes `+ivy/tasks' or `+helm/tasks', depending on which is available."
|
||||||
(interactive)
|
(interactive)
|
||||||
(cond ((featurep! :completion ivy) (+ivy/tasks))
|
(cond ((featurep! :tools magit)
|
||||||
|
(call-interactively #'magit-todos-list))
|
||||||
|
((featurep! :completion ivy) (+ivy/tasks))
|
||||||
((featurep! :completion helm) (+helm/tasks))))
|
((featurep! :completion helm) (+helm/tasks))))
|
||||||
|
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
|
Reference in New Issue
Block a user