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.
This commit is contained in:
Daniel - 2022-06-03 20:19:07 +02:00
parent cd0894a19e
commit f8fecc0bda
Signed by: dbo
GPG Key ID: 784AA8DF0CCDF625
1 changed files with 1 additions and 1 deletions

View File

@ -1087,7 +1087,7 @@
((org-agenda-overriding-header "Deadlines") ((org-agenda-overriding-header "Deadlines")
(org-agenda-sorting-strategy '(deadline-up priority-down)) (org-agenda-sorting-strategy '(deadline-up priority-down))
(org-deadline-warning-days 30))) (org-deadline-warning-days 30)))
(tags-todo "TODO={CONT\\|ATTN}-HOLD" (tags-todo "TODO={CONT\\|ATTN}-HOLD-TIMESTAMP>\"<now>\""
((org-agenda-overriding-header "WIP List (TODO ∈ {CONT,ATTN}, not scheduled in the future)") ((org-agenda-overriding-header "WIP List (TODO ∈ {CONT,ATTN}, not scheduled in the future)")
(org-agenda-sorting-strategy '(priority-down category-up)) (org-agenda-sorting-strategy '(priority-down category-up))
(org-agenda-todo-ignore-scheduled 'future))) (org-agenda-todo-ignore-scheduled 'future)))