Re: [Orgmode] due today notification

2010-04-24 Thread Bastien
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


[Orgmode] due today notification

2010-04-23 Thread Buck Brody
Is there a way to know if an item is due today by only looking at the
headline or at an agenda?  For instance, could a tag today be triggered
based upon a deadline? Basically, when looking at a sparse tree or an
agenda, I would like to know what is due today without using agenda for
current day or week or going into column view.

Thanks
___
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