Experimentally add a WIP list

I regularly filter the main agenda view for the CONT tag to see my WIP items, so
it's propably meaningful to have this as extra list.  It's using some space in
the agenda view, though, so let's see how this will turn out.
This commit is contained in:
Daniel - 2022-02-06 14:11:50 +01:00
parent 90223e3ab0
commit 5178d039f4
No known key found for this signature in database
GPG Key ID: 1C7071A75BB72D64
1 changed files with 5 additions and 2 deletions

View File

@ -1074,8 +1074,11 @@
((org-agenda-overriding-header "Deadlines")
(org-agenda-sorting-strategy '(deadline-up priority-down))
(org-deadline-warning-days 30)))
(tags-todo "-HOLD-SOMEWHEN-DATE-WAIT/-DONE"
((org-agenda-overriding-header "Next Actions List (not scheduled or scheduled in the future)")
(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\"-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)
(org-agenda-todo-ignore-scheduled 'future)
(org-agenda-sorting-strategy '(priority-down category-up))))))