From bd75b1505603bed0d361d774c6a276c623be5799 Mon Sep 17 00:00:00 2001 From: Adam Porter Date: Fri, 24 Aug 2018 09:11:12 -0500 Subject: [PATCH] Docs: Clarify example Show where the grouping comes from, since it's not part of this package. --- README.org | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/README.org b/README.org index ef1b698..14edaa1 100644 --- a/README.org +++ b/README.org @@ -41,7 +41,22 @@ Also included is ~org-ql-agenda~, which uses ~org-ql~ queries to select entries (and (or (date = today) (deadline <=) (scheduled <= today)) - (not (done)))) + (not (done))) + ;; The `org-super-agenda-groups' setting is used automatically when set, or it + ;; may be overriden by specifying it here: + :super-groups '((:name "Bills" + :tag "bills") + (:todo ("SOMEDAY" "TO-READ" "CHECK" "TO-WATCH" "WATCHING") + :order 7) + (:name "Personal" + :habit t + :tag "personal" + :order 3) + (:todo "WAITING" + :order 6) + (:priority "A" :order 1) + (:priority "B" :order 2) + (:priority "C" :order 2))) #+END_SRC Which presents this buffer: