From 2ee4de5937ba8a5dd5b104efc25b91f96be2380c Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Mon, 20 Jun 2022 18:18:56 +0200 Subject: [PATCH] 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. --- init.el | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/init.el b/init.el index 5e88e3c..20ad31d 100644 --- a/init.el +++ b/init.el @@ -1138,22 +1138,18 @@ respectively." (org-deadline-warning-days 30))) (tags-todo "TODO={CONT\\|ATTN}-HOLD-TIMESTAMP>\"\"" ((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))) (tags-todo "TODO<>\"CONT\"-HOLD-SOMEWHEN-DATE-WAIT-TEMPLATE/-DONE" ((org-agenda-overriding-header "Next Actions List (not WIP, not scheduled)") (org-tags-match-list-sublevels t) - (org-agenda-todo-ignore-scheduled t) - (org-agenda-sorting-strategy '(priority-down effort-up category-keep)))))) + (org-agenda-todo-ignore-scheduled t))))) ("B" "Backlog" ((tags-todo "-HOLD-SOMEWHEN-DATE-PERIODIC-TEMPLATE/-DONE" ((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-tags-match-list-sublevels t))) (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)))))) + (org-tags-match-list-sublevels t))))) ("O" "Open, non-periodic TODOs" ((tags-todo "-PERIODIC-SOMEWHEN-REGULAR-HOLD-TEMPLATE" ((org-agenda-overriding-header "List of open, non-periodic TODO items") @@ -1164,8 +1160,7 @@ respectively." ("U" "Unsupervised (Waiting, Missed Appointments, Hold)" ((tags-todo "WAIT-HOLD-SOMEWHEN" ((org-agenda-overriding-header "Waiting For List") - (org-agenda-todo-ignore-scheduled t) - (org-agenda-sorting-strategy '(priority-down effort-up category-keep)))) + (org-agenda-todo-ignore-scheduled t))) (tags-todo "DATE" ((org-agenda-overriding-header "Missed appointments (DATEs with timestamp in the past)") (org-agenda-todo-ignore-timestamp 0)))