From 5be6bdea1fa74c549eaa64d98a8e8d17dee57e73 Mon Sep 17 00:00:00 2001 From: Patrick Winter Date: Thu, 7 Nov 2019 19:24:55 +0100 Subject: [PATCH] Integrate due date into task overview --- taskwarrior.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/taskwarrior.el b/taskwarrior.el index 6a1894c..d858adb 100644 --- a/taskwarrior.el +++ b/taskwarrior.el @@ -260,11 +260,12 @@ (let* ((id (format "%s" (alist-get 'id entry))) (urgency (format "%0.2f" (alist-get 'urgency entry))) (priority (format " %s " (or (alist-get 'priority entry) ""))) + (due (format "%s" (or (taskwarrior--parse-date (alist-get 'due entry)) ""))) (annotations (format "%d" (length (or (alist-get 'annotations entry) '())))) (project (or (alist-get 'project entry) "")) (tags (or (taskwarrior--concat-tag-list (alist-get 'tags entry)) "")) (description (format "%s" (alist-get 'description entry)))) - `(,id [,id ,urgency ,priority ,annotations ,project ,tags ,description]))) + `(,id [,id ,urgency ,priority ,due ,annotations ,project ,tags ,description]))) (taskwarrior-vector-to-list (json-read-from-string (taskwarrior--shell-command "export" filter)))))) @@ -338,8 +339,6 @@ (new (completing-read "Priority: " options))) (taskwarrior--mutable-shell-command "modify" id (concat "priority:" new)))) - - (defun taskwarrior-add (description) "Add new task with DESCRIPTION." (interactive "sDescription: ") @@ -422,6 +421,7 @@ `[("Id" 3 nil) ("Urg" 6 taskwarrior--urgency-predicate) ("Pri" 3 nil) + ("Due" 10 nil) ("Ann" 3 nil) ("Project" 15 nil) ("Tags" 15 nil)