Hi,
Buck Brody <[email protected]> writes:
> Is there a way to know if an item is due today by only looking at the headline
> or at an agenda?
The is the agenda custom command I use for this:
,----
| ("d" "Due today" agenda ""
| ((org-agenda-ndays 1)
| (org-deadline-warning-days 0)
| (org-agenda-skip-scheduled-if-deadline-is-shown t)
| (org-agenda-skip-function
| (lambda ()
| (let* ((dl (org-entry-get nil "DEADLINE")))
| (if (or (not dl)
| (equal dl "")
| (org-time> dl (org-time-today)))
| (progn (outline-next-heading) (point))))))))
`----
It shows all deadlines due today.
HTH
--
Bastien
_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
[email protected]
http://lists.gnu.org/mailman/listinfo/emacs-orgmode