Extend WIP list with started dates and remove future items

Started dates are also WIP, in particular if they have been interrupted.  Items
scheduled in the future should only appear on the WIP list when they are due.
This commit is contained in:
Daniel - 2022-02-07 17:10:17 +01:00
parent 83421c072a
commit 695b3396dd
No known key found for this signature in database
GPG Key ID: 1C7071A75BB72D64
1 changed files with 4 additions and 3 deletions

View File

@ -1074,9 +1074,10 @@
((org-agenda-overriding-header "Deadlines")
(org-agenda-sorting-strategy '(deadline-up priority-down))
(org-deadline-warning-days 30)))
(tags-todo "TODO=\"CONT\""
((org-agenda-overriding-header "WIP List (TODO=\"CONT\", all items)")
(org-agenda-sorting-strategy '(priority-down category-up))))
(tags-todo "TODO={CONT\\|ATTN}"
((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)))
(tags-todo "TODO<>\"CONT\"-HOLD-SOMEWHEN-DATE-WAIT/-DONE"
((org-agenda-overriding-header "Next Actions List (not WIP, not scheduled in the future)")
(org-tags-match-list-sublevels t)