From b718fb5a6c3df63e2e36d77c7a9a17cd8d78ef2f 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 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/init.el b/init.el index bbabf9d..1b8e5e4 100644 --- a/init.el +++ b/init.el @@ -1074,6 +1074,9 @@ ((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 "-HOLD-SOMEWHEN-DATE-WAIT/-DONE" ((org-agenda-overriding-header "Next Actions List (not scheduled or scheduled in the future)") (org-tags-match-list-sublevels t)