emacs-orgmode
[Top][All Lists]
Advanced

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

Re: [Orgmode] How to get a list of unscheduled TODOs


From: Manish
Subject: Re: [Orgmode] How to get a list of unscheduled TODOs
Date: Wed, 4 Feb 2009 11:59:46 +0530

On Wed, Feb 4, 2009 at 11:28 AM, Saurabh Agrawal wrote:
> Hi group,
>
> I have got around 4 projects running at a time. As per philosophy of
> GTD, sometime I get some TODOs, and without thinking much about them
> at the time, I use remember package to just list them as a TODO in
> correct Category. At the end of the day, I would like to have a list
> of my unscheduled TODOs, of School Category separately. I am using a
> custom agenda for this. But using org-agenda-todo-ignore-with-date is
> not working in the following form:
>
> '(org-agenda-custom-commands
> (quote (("t" "Today!!!"
> ((agenda "" ((org-agenda-ndays 1)))
> (tags-todo "CATEGORY=\"School\"" (org-agenda-todo-ignore-with-date 1 ))
> (tags-todo "CATEGORY=\"CRS\"" nil)
> (tags-todo "CATEGORY=\"Study\"" nil)
> (tags-todo "CATEGORY=\"Practice\"" nil)
> (tags-todo "CATEGORY=\"Reading\"" nil)
> (tags-todo "CATEGORY=\"Other\"" nil))))))

Something like this perhaps.  Untested.. but key takeaway is using the
org-agenda-skip-function.

--8<---------------cut here---------------start------------->8---
(setq org-agenda-custom-commands
      (quote (("t" "Today!!!"
               ((agenda "" ((org-agenda-ndays 1)))
                (tags-todo "CATEGORY=\"School\""
                           (org-agenda-skip-function
'(org-agenda-skip-entry-if 'deadline 'scheduled)))
                (tags-todo "CATEGORY=\"CRS\"" nil)
                (tags-todo "CATEGORY=\"Study\"" nil)
                (tags-todo "CATEGORY=\"Practice\"" nil)
                (tags-todo "CATEGORY=\"Reading\"" nil)
                (tags-todo "CATEGORY=\"Other\"" nil))))))
--8<---------------cut here---------------end--------------->8---

HTH
-- 
Manish




reply via email to

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