fix: properly sort agenda entries by date
The sorting methods `time-up` and `timestamp-up` are somewhat confusingly worded, so I didn't fully understand how they worked.
This commit is contained in:
parent
22f2515207
commit
f32b2002a6
|
@ -3756,9 +3756,9 @@ A full week-long agenda is usually too cluttered for me to read, so I'll narrow
|
|||
org-deadline-warning-days 7
|
||||
|
||||
org-agenda-sorting-strategy
|
||||
'((agenda time-up habit-down priority-down category-up)
|
||||
(todo habit-down priority-down time-up category-up)
|
||||
(tags habit-down priority-down time-up category-up)
|
||||
'((agenda time-up habit-down timestamp-up priority-down category-up)
|
||||
(todo habit-down priority-down category-up)
|
||||
(tags habit-down priority-down category-up)
|
||||
(search category-up))
|
||||
|
||||
;; Agenda files
|
||||
|
|
Loading…
Reference in a new issue