Fix unbalanced parens in +default/project-tasks
This commit is contained in:
parent
c033bfaca2
commit
d79817edeb
1 changed files with 2 additions and 2 deletions
|
@ -89,8 +89,8 @@ If ARG (universal argument), runs `compile' from the current directory."
|
|||
(defun +default/project-tasks ()
|
||||
"Invokes `+ivy/tasks' or `+helm/tasks', depending on which is available."
|
||||
(interactive)
|
||||
(cond ((featurep! :completion ivy) (+ivy/tasks)
|
||||
(featurep! :completion helm) (+helm/tasks))))
|
||||
(cond ((featurep! :completion ivy) (+ivy/tasks))
|
||||
((featurep! :completion helm) (+helm/tasks))))
|
||||
|
||||
;;;###autoload
|
||||
(defun +default/newline-above ()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue