More...
This commit is contained in:
parent
146772af67
commit
1d9a2cfc53
1 changed files with 10 additions and 10 deletions
20
README.org
20
README.org
|
|
@ -6,9 +6,9 @@ Here's an example of generating a kind of agenda view for today (note that the g
|
|||
|
||||
#+BEGIN_SRC elisp
|
||||
(org-agenda-ng "~/src/emacs/org-super-agenda/test/test.org"
|
||||
(and (or (date :date '= (org-today))
|
||||
(date :deadline '<= (+ org-deadline-warning-days (org-today)))
|
||||
(date :scheduled '<= (org-today)))
|
||||
(and (or (date '= (org-today))
|
||||
(deadline '<=)
|
||||
(scheduled '<= (org-today)))
|
||||
(not (done))))
|
||||
#+END_SRC
|
||||
|
||||
|
|
@ -27,19 +27,19 @@ Here are some other examples:
|
|||
|
||||
(org-agenda-ng "~/org/main.org"
|
||||
(or (habit)
|
||||
(date :deadline '<= (org-today))
|
||||
(date :scheduled '<= (org-today))
|
||||
(deadline '<=)
|
||||
(scheduled '<= (org-today))
|
||||
(and (todo "DONE" "CANCELLED")
|
||||
(date :closed '= (org-today)))))
|
||||
(closed '= (org-today)))))
|
||||
|
||||
(org-agenda-ng "~/org/main.org"
|
||||
(or (habit)
|
||||
(and (or (date :date '= (org-today))
|
||||
(date :deadline '<=)
|
||||
(date :scheduled '<= (org-today)))
|
||||
(and (or (date '= (org-today))
|
||||
(deadline '<=)
|
||||
(scheduled '<= (org-today)))
|
||||
(not (done)))
|
||||
(and (todo "DONE" "CANCELLED")
|
||||
(date :closed '= (org-today)))))
|
||||
(closed '= (org-today)))))
|
||||
|
||||
(org-agenda-ng "~/org/main.org"
|
||||
(or (habit)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue