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 Borchmann 2022-02-06 14:11:50 +01:00
parent 90223e3ab0
commit 2437e42dd5
Signed by: exot
GPG Key ID: 1C7071A75BB72D64

View File

@ -1074,8 +1074,11 @@
((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 "-HOLD-SOMEWHEN-DATE-WAIT/-DONE" (tags-todo "TODO=\"CONT\""
((org-agenda-overriding-header "Next Actions List (not scheduled or scheduled in the future)") ((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 "Open Actions List (not WIP, not scheduled in the future)")
(org-tags-match-list-sublevels t) (org-tags-match-list-sublevels t)
(org-agenda-todo-ignore-scheduled 'future) (org-agenda-todo-ignore-scheduled 'future)
(org-agenda-sorting-strategy '(priority-down category-up)))))) (org-agenda-sorting-strategy '(priority-down category-up))))))