From 4b1eb2e3223331b1b7782bbbc354a4f1c22b8bcb Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Wed, 19 May 2021 20:11:48 +0200 Subject: [PATCH] Sort items in Waiting-For list by priority and category This is the same sorting as it is used in the Next Action list, and should provide a better overview over the current items on the Waiting-For list. Formatted the value for `org-agenda-sorting-strategy` on one line for better readability, and also changed that for the definition of the Next Action list. --- init.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/init.el b/init.el index edcf1a0..cc36a14 100644 --- a/init.el +++ b/init.el @@ -1065,8 +1065,7 @@ ((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)))) + (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) @@ -1081,7 +1080,8 @@ ("U" "Unsupervised (Waiting, Missed Appointments, Hold)" ((tags-todo "WAIT" - ((org-agenda-overriding-header "Waiting For List"))) + ((org-agenda-overriding-header "Waiting For List") + (org-agenda-sorting-strategy '(priority-down category-up)))) (tags-todo "DATE" ((org-agenda-overriding-header "Missed appointments (DATEs with timestamp in the past)") (org-agenda-todo-ignore-timestamp 0)))