commit cb6a3bd83a303d80ce3b4e4257af58962b58368d parent 64b7ac2e3ba62e6a2257cac3480a137c6cf891ab Author: Alex Balgavy <alex@balgavy.eu> Date: Thu, 7 Jul 2022 23:23:37 +0200 emacs: org-agenda 'next' should be mainly sorted by priority Diffstat:
M | emacs/config.org | | | 3 | ++- |
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/emacs/config.org b/emacs/config.org @@ -618,7 +618,8 @@ The first two strings are what shows up in the agenda dispatcher (the key to pre #+begin_src emacs-lisp (setq org-agenda-custom-commands '(("n" "Next actions" - ((todo "NEXT" ((org-agenda-overriding-header "Next actions:"))))) + todo "NEXT" ((org-agenda-overriding-header "Next actions:") + (org-agenda-sorting-strategy '(priority-down alpha-up)))) ("W" "Waiting" ((todo "WAITING" ((org-agenda-overriding-header "Waiting:"))))) ("S" . "Saved for later...")