From aa7623ca7c72e6b8d441a835077e8384730e8e47 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Mon, 20 Jun 2022 18:14:14 +0200 Subject: [PATCH] Include complex tasks in Backlog agenda in separate section This is a compromise to have a list of all complex tasks but not cluttering the list of actionable items with them. --- init.el | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/init.el b/init.el index 411c986..5e88e3c 100644 --- a/init.el +++ b/init.el @@ -1147,9 +1147,13 @@ respectively." (org-agenda-sorting-strategy '(priority-down effort-up category-keep)))))) ("B" "Backlog" ((tags-todo "-HOLD-SOMEWHEN-DATE-PERIODIC-TEMPLATE/-DONE" - ((org-agenda-overriding-header "Backlog items (next items list without periodic tasks; includes waiting-fors)") + ((org-agenda-overriding-header "Backlog: Actionable items (no periodic tasks; includes waiting-fors)") (org-tags-match-list-sublevels t) - (org-agenda-sorting-strategy '(priority-down effort-up category-keep)))))) + (org-agenda-sorting-strategy '(priority-down effort-up category-keep)))) + (tags "TODO=\"\"-HOLD-SOMEWHEN-DATE-PERIODIC-NOTE-NOP-TOPIC-TEMPLATE" + ((org-agenda-overriding-header "Backlog: Complex tasks (i.e., goals)") + (org-tags-match-list-sublevels t) + (org-agenda-sorting-strategy '(priority-down effort-up category-keep)))))) ("O" "Open, non-periodic TODOs" ((tags-todo "-PERIODIC-SOMEWHEN-REGULAR-HOLD-TEMPLATE" ((org-agenda-overriding-header "List of open, non-periodic TODO items")