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.
This commit is contained in:
Daniel - 2021-09-24 16:24:46 +02:00
parent 835cd6d091
commit 28a6a86cc4
No known key found for this signature in database
GPG Key ID: 1C7071A75BB72D64
1 changed files with 4 additions and 9 deletions

13
init.el
View File

@ -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"