From 3dee2007296762f104c19a25017c6e3e14591917 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Thu, 6 Jun 2024 10:45:25 +0200 Subject: [PATCH] Skip task backlog items with deadline warning time in the future This change is experimental and might be reverted. Idea: we don't want to see those items until the deadline warning date is due anyway. Drawback: those items are not shown even when jumping to the specific date (or past it), so planning ahread get's a bit more complicated. --- init.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index 385958a..a6aa6c6 100644 --- a/init.el +++ b/init.el @@ -1024,8 +1024,9 @@ quickly loose their meaning." (org-agenda-todo-ignore-scheduled 'all) (org-agenda-todo-ignore-timestamp 0))) (tags-todo "TODO<>\"CONT\"-HOLD-SOMEWHEN-DATE-WAIT-TEMPLATE" - ((org-agenda-overriding-header "Task Backlog (not WIP, not scheduled)") + ((org-agenda-overriding-header "Task Backlog (not WIP, not scheduled, no far deadline)") (org-agenda-todo-ignore-scheduled 'all) + (org-agenda-todo-ignore-deadlines 'far) (org-tags-match-list-sublevels t))))) ("B" "Backlog"