Docs: Clarify example

Show where the grouping comes from, since it's not part of this
package.
This commit is contained in:
Adam Porter 2018-08-24 09:11:12 -05:00
parent e7bc68c9d1
commit bd75b15056

View file

@ -41,7 +41,22 @@ Also included is ~org-ql-agenda~, which uses ~org-ql~ queries to select entries
(and (or (date = today) (and (or (date = today)
(deadline <=) (deadline <=)
(scheduled <= today)) (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 #+END_SRC
Which presents this buffer: Which presents this buffer: