From ce9fa34c1a7c723203cdd7811223d7f81ea4c203 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sun, 27 Mar 2022 09:44:35 +0200 Subject: [PATCH] Include items in WIP list that are scheduled today or in the past This way, the WIP list faithfully shows all WIP items and gives a better overview of the current work load. Items will appear twice though when they are scheduled today or in the past. --- init.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.el b/init.el index d6ccbb3..ab0d0fb 100644 --- a/init.el +++ b/init.el @@ -1079,9 +1079,9 @@ (org-agenda-sorting-strategy '(deadline-up priority-down)) (org-deadline-warning-days 30))) (tags-todo "TODO={CONT\\|ATTN}" - ((org-agenda-overriding-header "WIP List (TODO={CONT\\\\|ATTN}, not scheduled)") + ((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 t))) + (org-agenda-todo-ignore-scheduled 'future))) (tags-todo "TODO<>\"CONT\"-HOLD-SOMEWHEN-DATE-WAIT-TEMPLATE/-DONE" ((org-agenda-overriding-header "Next Actions List (not WIP, not scheduled)") (org-tags-match-list-sublevels t)