From 73228fdfc7e834a18eb87467d417cd88ea5b47f6 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Fri, 3 Sep 2021 17:17:37 +0200 Subject: [PATCH] Sort tag and todo search result by priority also This is the current default value from Org mode. It also makes more sense for my workflows, as those searches usually are meant to be worked upon, and sorting by priority helps to find the most relevant items on those lists. --- init.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.el b/init.el index 996a03d..1452b48 100644 --- a/init.el +++ b/init.el @@ -996,8 +996,8 @@ org-agenda-insert-diary-strategy 'top-level org-catch-invisible-edits 'show org-agenda-sorting-strategy '((agenda time-up habit-up priority-down) - (todo category-keep) - (tags category-keep) + (todo priority-down category-keep) + (tags priority-down category-keep) (search category-keep)) org-agenda-window-setup 'current-window org-agenda-restore-windows-after-quit t