We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6878b99 commit 7c7ea29Copy full SHA for 7c7ea29
lua/orgmode/agenda/views/agenda.lua
@@ -28,6 +28,9 @@ local function sort_agenda_items(agenda_items)
28
if not b.headline_date.date_only and a.headline_date.date_only then
29
return false
30
end
31
+ if not a.headline_date.date_only and not b.headline_date.date_only then
32
+ return a.headline_date:is_before(b.headline_date)
33
+ end
34
return sort_by_date_or_priority_or_category(a, b)
35
36
0 commit comments