From 5234ddd0a36bb99baf6cd147fa0cfef554491e09 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Wed, 23 Feb 2022 16:51:45 +0100 Subject: [PATCH] Do not show scheduled items in WIP or NEXT list When things are scheduled, they are shown in the time grid portion of the agenda. When they are scheduled in the future, they will not show up until that date is due; when they are scheduled in the past or present, they are shown on the time grid directly. Both situations are sufficient, and it's thus not necessary to show scheduled items in other lists as well. --- init.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/init.el b/init.el index 1197eb1..a9469d3 100644 --- a/init.el +++ b/init.el @@ -1075,11 +1075,11 @@ (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 in the future)") + ((org-agenda-overriding-header "WIP List (TODO={CONT\\\\|ATTN}, not scheduled)") (org-agenda-sorting-strategy '(priority-down category-up)) - (org-agenda-todo-ignore-scheduled 'future))) + (org-agenda-todo-ignore-scheduled t))) (tags-todo "TODO<>\"CONT\"-HOLD-SOMEWHEN-DATE-WAIT/-DONE" - ((org-agenda-overriding-header "Next Actions List (not WIP, not scheduled in the future)") + ((org-agenda-overriding-header "Next Actions List (not WIP, not scheduled)") (org-tags-match-list-sublevels t) (org-agenda-todo-ignore-scheduled 'future) (org-agenda-sorting-strategy '(priority-down category-up))))))