Add: org-ql-block-header

Closes #32.
This commit is contained in:
Adam Porter 2019-09-06 12:26:06 -05:00
parent 8a624bdf0d
commit eb722649c5
3 changed files with 25 additions and 13 deletions

View file

@ -52,10 +52,11 @@ With this =org-ql-block= agenda view, like:
#+BEGIN_SRC elisp
(setq org-agenda-custom-commands
'(("s" "Stuck Projects"
((org-ql-block '(and (tags "@project")
(not (done))
(not (descendants (todo "NEXT")))
(not (descendants (scheduled)))))))))
((org-ql-block '(and (tags "@project")
(not (done))
(not (descendants (todo "NEXT")))
(not (descendants (scheduled))))
((org-ql-block-header "Stuck Projects")))))))
#+END_SRC
* Listing bills coming due