Hi,

Buck Brody <buckbr...@gmail.com> 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.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to