From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marcelo de Moraes Serpa Subject: Re: Filter scheduled items Date: Thu, 30 Sep 2010 12:05:40 -0500 Message-ID: References: <87r5gb418s.fsf@fastmail.fm> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Return-path: Received: from [140.186.70.92] (port=52081 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P1MZk-000643-8e for emacs-orgmode@gnu.org; Thu, 30 Sep 2010 13:05:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1P1MZh-0002Po-Sr for emacs-orgmode@gnu.org; Thu, 30 Sep 2010 13:05:43 -0400 Received: from mail-iw0-f169.google.com ([209.85.214.169]:64464) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1P1MZh-0002Pa-Q0 for emacs-orgmode@gnu.org; Thu, 30 Sep 2010 13:05:41 -0400 Received: by iwn33 with SMTP id 33so4159209iwn.0 for ; Thu, 30 Sep 2010 10:05:41 -0700 (PDT) In-Reply-To: <87r5gb418s.fsf@fastmail.fm> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Matt Lundin Cc: Org Mode Thanks Matt, I will try that out and let you know how it goes. >Out of curiosity, how are you doing this in org-mode? I currently use >an inbox and touch each TODO item once to schedule, prioritize, and >file it, but I have to open up my tasks file. I just add it to the agenda C-c [. Agenda will then show any scheduled items in the calendar view (C-c a a). Is that what you are asking about? Cheerds, Marcelo. On Thu, Sep 30, 2010 at 11:58 AM, Matt Lundin wrote: > Marcelo de Moraes Serpa writes: > >> Hmm, org actually does this already. >> >> The problem is that I was filtering by TODO items, and the scheduled >> item was the parent of two TODO items (A non-TODO item tagged as >> PROJECT). >> >> So now I guess the question is: >> Can I make sub-items inherit the schedule information? > > Yes, by using org-use-property-inheritance. This works when doing a > property search, so you'll have to use tags-todo. > > Does this custom command accomplish what you are looking for? > > --8<---------------cut here---------------start------------->8--- > (add-to-list 'org-agenda-custom-commands > =A0 =A0 =A0 =A0 =A0 =A0 ;; a todo list with no future items and inherited= scheduling info > =A0 =A0 =A0 =A0 =A0 =A0 '("x" "No future items" tags-todo "+SCHEDULED<=3D= \"\"/!+TODO" > =A0 =A0 =A0 =A0 =A0 =A0 =A0 ((org-use-property-inheritance '("SCHEDULED")= )))) > --8<---------------cut here---------------end--------------->8--- > > Best, > Matt >