From f8fecc0bda95cc3b9f2f8ce22a4235ffc7475103 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Fri, 3 Jun 2022 20:19:07 +0200 Subject: [PATCH] Ignore active future appointments on the WIP list When appoints have been started but are then postponed to the future, I do not want to see them on the WIP list. I could schedule them for the new date in addition, but this would count the associated effort twice in the agenda view. So let's just ignore timestamps in the future, they will show up when they are due anyway. --- init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.el b/init.el index 013194f..c8080f2 100644 --- a/init.el +++ b/init.el @@ -1087,7 +1087,7 @@ ((org-agenda-overriding-header "Deadlines") (org-agenda-sorting-strategy '(deadline-up priority-down)) (org-deadline-warning-days 30))) - (tags-todo "TODO={CONT\\|ATTN}-HOLD" + (tags-todo "TODO={CONT\\|ATTN}-HOLD-TIMESTAMP>\"\"" ((org-agenda-overriding-header "WIP List (TODO ∈ {CONT,ATTN}, not scheduled in the future)") (org-agenda-sorting-strategy '(priority-down category-up)) (org-agenda-todo-ignore-scheduled 'future)))