Add: Sorting for org-ql

This commit is contained in:
Adam Porter 2018-05-23 03:22:25 -05:00
parent 1ccbe008ac
commit d826425fd7
3 changed files with 114 additions and 11 deletions

View file

@ -176,6 +176,18 @@ Doesn't seem to make any difference.
(done)))
#+END_SRC
** Sorting
#+BEGIN_SRC elisp
(org-ql "~/src/emacs/org-super-agenda/test/test.org"
(regexp "over")
:sort (priority deadline scheduled))
(org-ql "~/src/emacs/org-super-agenda/test/test.org"
(regexp "over")
:sort (date))
#+END_SRC
** Regexp matching
#+BEGIN_SRC elisp