From 4975d5fd7e1d9d715d171785f90894d13913be38 Mon Sep 17 00:00:00 2001 From: Patrick Winter Date: Mon, 20 May 2019 13:18:54 +0200 Subject: [PATCH] Fix format of tasks without project --- taskwarrior.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taskwarrior.el b/taskwarrior.el index 0ab3b04..1db0382 100644 --- a/taskwarrior.el +++ b/taskwarrior.el @@ -276,7 +276,7 @@ the front and focus it. Otherwise, create one and load the data." (insert (if project (format (concat " %-2d (%05.2f) [%s]%-" (number-to-string project-spacing) "s %s\n") id urgency project "" description) (format - (concat "%-2d (%05.2f) %-" (number-to-string (+ 3 project-max-length)) "s%s\n") + (concat " %-2d (%05.2f) %-" (number-to-string (+ 3 project-max-length)) "s%s\n") id urgency "" description)))))))