-
I have several
Unfortunately, appointments below the same header seem to be grouped together, thus the sorting is not global. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
Beta Was this translation helpful? Give feedback.
-
You would need to provide a sort function that collects timestamps in an entry and chooses one (e.g. the earliest or latest) to compare with the one chosen from the other entry. You can see some similar code here: Lines 2325 to 2388 in e41fe90 It's intended to provide more sorting functions like that in the future. It's just a matter of finding the time to work on these ideas. See also some related code here: https://github.com/alphapapa/unpackaged.el#refile-to-datetree-file-using-earliestlatest-timestamp-in-entry |
Beta Was this translation helpful? Give feedback.
You would need to provide a sort function that collects timestamps in an entry and chooses one (e.g. the earliest or latest) to compare with the one chosen from the other entry. You can see some similar code here:
org-ql/org-ql.el
Lines 2325 to 2388 in e41fe90