Fix unbalanced parens in +default/project-tasks

This commit is contained in:
Henrik Lissner 2019-02-12 00:47:15 -05:00
parent c033bfaca2
commit d79817edeb
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -89,8 +89,8 @@ 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! :completion ivy) (+ivy/tasks))
(featurep! :completion helm) (+helm/tasks)))) ((featurep! :completion helm) (+helm/tasks))))
;;;###autoload ;;;###autoload
(defun +default/newline-above () (defun +default/newline-above ()