From 5178d039f4933dbdebf1bfad43f63cd31788afbc Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sun, 6 Feb 2022 14:11:50 +0100 Subject: [PATCH] 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. --- init.el | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/init.el b/init.el index bbabf9d..552938c 100644 --- a/init.el +++ b/init.el @@ -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))))))