Skip to content

Instantly share code, notes, and snippets.

@jwiegley
Created November 5, 2024 05:44
Show Gist options
  • Save jwiegley/a10d1835954c4b9487bd9ca0ee1f9add to your computer and use it in GitHub Desktop.
Save jwiegley/a10d1835954c4b9487bd9ca0ee1f9add to your computer and use it in GitHub Desktop.
(length
(org-ql-query
:select '(point)
:from (org-agenda-files)
:where
'(and (todo)
(not (or (ancestors (todo))
(scheduled)
(deadline)
(ts-active)))
(let ((next-review (property "NEXT_REVIEW")))
(and next-review
(time-less-p
(org-encode-time (org-parse-time-string next-review))
(current-time)))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment