Compare commits

...

3 Commits

Author SHA1 Message Date
74c8d95381
Remove obsolete Open tasks agenda view
Haven't used it for a long time now.
2022-06-20 18:21:18 +02:00
2ee4de5937
Remove explicit sorting settings in custom agendas
Those match the current value of `org-agenda-sorting-strategy` and are thus
redundant.  Removing those settings also allows to customize the order of items
in those views.
2022-06-20 18:18:56 +02:00
aa7623ca7c
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.
2022-06-20 18:14:14 +02:00

22
init.el
View File

@ -1138,30 +1138,22 @@ respectively."
(org-deadline-warning-days 30))) (org-deadline-warning-days 30)))
(tags-todo "TODO={CONT\\|ATTN}-HOLD-TIMESTAMP>\"<now>\"" (tags-todo "TODO={CONT\\|ATTN}-HOLD-TIMESTAMP>\"<now>\""
((org-agenda-overriding-header "WIP List (TODO ∈ {CONT,ATTN}, not scheduled in the future)") ((org-agenda-overriding-header "WIP List (TODO ∈ {CONT,ATTN}, not scheduled in the future)")
(org-agenda-sorting-strategy '(priority-down effort-up category-keep))
(org-agenda-todo-ignore-scheduled 'future))) (org-agenda-todo-ignore-scheduled 'future)))
(tags-todo "TODO<>\"CONT\"-HOLD-SOMEWHEN-DATE-WAIT-TEMPLATE/-DONE" (tags-todo "TODO<>\"CONT\"-HOLD-SOMEWHEN-DATE-WAIT-TEMPLATE/-DONE"
((org-agenda-overriding-header "Next Actions List (not WIP, not scheduled)") ((org-agenda-overriding-header "Next Actions List (not WIP, not scheduled)")
(org-tags-match-list-sublevels t) (org-tags-match-list-sublevels t)
(org-agenda-todo-ignore-scheduled t) (org-agenda-todo-ignore-scheduled t)))))
(org-agenda-sorting-strategy '(priority-down effort-up category-keep))))))
("B" "Backlog" ("B" "Backlog"
((tags-todo "-HOLD-SOMEWHEN-DATE-PERIODIC-TEMPLATE/-DONE" ((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-tags-match-list-sublevels t)))
(org-agenda-sorting-strategy '(priority-down effort-up category-keep)))))) (tags "TODO=\"\"-HOLD-SOMEWHEN-DATE-PERIODIC-NOTE-NOP-TOPIC-TEMPLATE"
("O" "Open, non-periodic TODOs" ((org-agenda-overriding-header "Backlog: Complex tasks (i.e., goals)")
((tags-todo "-PERIODIC-SOMEWHEN-REGULAR-HOLD-TEMPLATE" (org-tags-match-list-sublevels t)))))
((org-agenda-overriding-header "List of open, non-periodic TODO items")
(org-use-tag-inheritance t)
(org-agenda-sorting-strategy '(deadline-down priority-down effort-up category-keep))
(org-agenda-prefix-format '((tags . "%-12c %-4e ")))))))
("U" "Unsupervised (Waiting, Missed Appointments, Hold)" ("U" "Unsupervised (Waiting, Missed Appointments, Hold)"
((tags-todo "WAIT-HOLD-SOMEWHEN" ((tags-todo "WAIT-HOLD-SOMEWHEN"
((org-agenda-overriding-header "Waiting For List") ((org-agenda-overriding-header "Waiting For List")
(org-agenda-todo-ignore-scheduled t) (org-agenda-todo-ignore-scheduled t)))
(org-agenda-sorting-strategy '(priority-down effort-up category-keep))))
(tags-todo "DATE" (tags-todo "DATE"
((org-agenda-overriding-header "Missed appointments (DATEs with timestamp in the past)") ((org-agenda-overriding-header "Missed appointments (DATEs with timestamp in the past)")
(org-agenda-todo-ignore-timestamp 0))) (org-agenda-todo-ignore-timestamp 0)))