From 28a6a86cc4a237b68235471dcd6b851521bc8a1f Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Fri, 24 Sep 2021 16:24:46 +0200 Subject: [PATCH] Merge Reading list with Next Action lists From my point of view, it does not make much sense anymore to distinguish these two lists. Reading items should be on the main next action list as regular TODO items. Indeed, using dedicated READ state does not make much sense either, so let's remove that one from our capture templates, too, but keep the READ tag for now. However, we cannot remove it from the keyword list for now as we are still using it in some old items. --- init.el | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/init.el b/init.el index e7c1476..27df821 100644 --- a/init.el +++ b/init.el @@ -1069,16 +1069,11 @@ ((org-agenda-overriding-header "Deadlines") (org-agenda-sorting-strategy '(deadline-up priority-down)) (org-deadline-warning-days 30))) - (tags-todo "-HOLD-SOMEWHEN-DATE-WAIT-READ/-DONE" + (tags-todo "-HOLD-SOMEWHEN-DATE-WAIT/-DONE" ((org-agenda-overriding-header "Next Actions List (unscheduled actions)") (org-tags-match-list-sublevels t) (org-agenda-todo-ignore-scheduled t) - (org-agenda-sorting-strategy '(priority-down category-up)))) - (tags-todo "READ-SOMEWHEN/-DONE" - ((org-agenda-overriding-header "Reading List") - (org-agenda-todo-ignore-scheduled t) - (org-agenda-sorting-strategy - '(priority-down time-up category-keep)))))) + (org-agenda-sorting-strategy '(priority-down category-up)))))) ("O" "Open, non-periodic TODOs" ((tags-todo "-PERIODIC-SOMEWHEN-REGULAR-HOLD" ((org-agenda-overriding-header "List of open, non-periodic TODO items") @@ -1189,13 +1184,13 @@ ("R" "read" entry (file db/org-default-refile-file) - ,(concat "* READ [#B] %^{Topic} :READ:\n" + ,(concat "* TODO [#B] %^{Topic} :READ:\n" ":PROPERTIES:\n:CREATED: %U\n:END:\n" "\n%a\n%?")) ("U" "Read current content of clipboard" entry (file db/org-default-refile-file) - ,(concat "* READ [#B] %^{Description} :READ:\n" + ,(concat "* TODO [#B] %^{Description} :READ:\n" ":PROPERTIES:\n:CREATED: %U\n:END:\n" "\n%(current-kill 0)")) ("w" "Weekly Summary"