More
This commit is contained in:
parent
8fcbd8de0f
commit
f0811a9220
2 changed files with 5 additions and 2 deletions
|
|
@ -1,14 +1,17 @@
|
|||
This is rudimentary, experimental, proof-of-concept alternative code for generating Org agendas. It doesn't support nearly as many features as =org-agenda.el= does. But it might be useful in some way. It uses some existing code from =org-agenda.el= and tries to be compatible with parts of it, like =org-agenda-finalize-entries= and =org-agenda-finalize=.
|
||||
This is rudimentary, experimental, proof-of-concept alternative code for generating Org agendas. It doesn't support nearly as many features as =org-agenda.el= does, but it might be useful in some way. It uses some existing code from =org-agenda.el= and tries to be compatible with parts of it, like =org-agenda-finalize-entries= and =org-agenda-finalize=.
|
||||
|
||||
Here's an example of generating a kind of agenda view for today:
|
||||
|
||||
#+BEGIN_SRC elisp
|
||||
(org-agenda-ng "~/src/emacs/org-super-agenda/test/test.org"
|
||||
(and (or (date :deadline '<= (org-today))
|
||||
(and (or (date :date '= (org-today))
|
||||
(date :deadline '<= (+ org-deadline-warning-days (org-today)))
|
||||
(date :scheduled '<= (org-today)))
|
||||
(not (apply #'todo org-done-keywords-for-agenda))))
|
||||
#+END_SRC
|
||||
|
||||
[[screenshot.png]]
|
||||
|
||||
Here are some other examples:
|
||||
|
||||
#+BEGIN_SRC elisp
|
||||
|
|
|
|||
BIN
screenshot.png
Normal file
BIN
screenshot.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 47 KiB |
Loading…
Add table
Add a link
Reference in a new issue