emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Orgmode] due today notification


From: Bastien
Subject: Re: [Orgmode] due today notification
Date: Sat, 24 Apr 2010 09:40:08 +0200
User-agent: Gnus/5.110011 (No Gnus v0.11) Emacs/23.1.92 (gnu/linux)

Hi,

Buck Brody <address@hidden> 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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]