From 4a5b363ead72611c2bbd7e90220cb6b5c9d1286a Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sun, 2 Jan 2022 14:22:35 +0100 Subject: [PATCH] Show items in main agenda view that are not scheduled in the future This should make the main agenda view into a good overview of everything that can be done right now, allowing it to choose the next task directly from that list. The scheduled items then are only meant for information and hiding future tasks. --- init.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.el b/init.el index f77bcf6..81ebcae 100644 --- a/init.el +++ b/init.el @@ -1078,9 +1078,9 @@ (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 (unscheduled actions)") + ((org-agenda-overriding-header "Next Actions List (not scheduled or scheduled in the future)") (org-tags-match-list-sublevels t) - (org-agenda-todo-ignore-scheduled t) + (org-agenda-todo-ignore-scheduled 'future) (org-agenda-sorting-strategy '(priority-down category-up)))))) ("B" "Backlog" ((tags-todo "-HOLD-SOMEWHEN-DATE-PERIODIC/-DONE"