From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marcelo de Moraes Serpa Subject: Re: Projects+Next Actions view Date: Fri, 1 Oct 2010 00:58:22 -0500 Message-ID: References: <87eicaokev.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=49287 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P1Yt5-0002Bi-97 for emacs-orgmode@gnu.org; Fri, 01 Oct 2010 02:14:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1P1YdT-00062a-QF for emacs-orgmode@gnu.org; Fri, 01 Oct 2010 01:58:25 -0400 Received: from mail-iw0-f169.google.com ([209.85.214.169]:59412) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1P1YdT-00062P-NK for emacs-orgmode@gnu.org; Fri, 01 Oct 2010 01:58:23 -0400 Received: by iwn33 with SMTP id 33so5230103iwn.0 for ; Thu, 30 Sep 2010 22:58:23 -0700 (PDT) In-Reply-To: <87eicaokev.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! However, this seems to show all the TODO items below a PROJECT item, including the DONE ones. What I had in mind was to show only the first child. Is it possible? Thanks, Marcelo. On Thu, Sep 30, 2010 at 6:56 PM, Matt Lundin wrote: > Marcelo de Moraes Serpa writes: > >> Another thing that I like about Things >> (http://culturedcode.com/things/) is the "Next Actions" view. It >> basically lists all projects plus the very first next action for each >> of them. When you need some perspective, having quick access to a view >> like this is very useful. It also shows any "orphan" tasks (tasks that >> don't belong to a project), so you have a nice overview of what you >> can do based on your own input. >> >> With org, I have created a Projects view, a tags agenda filter >> filtering for non-todo items. I could use follow mode, which is quite >> useful, but doesn't give the same uncluttered view Things does with >> its next actions view. I was wondering if it would be possible, even >> if more elisp would be needed, to create a view like this? >> >> E.x: >> >> * Keep the cat alive :PROJECT:HOME: >> =A0** TODO Feed the cat >> =A0 ... >> >> * Feature 2 :PROJECT:FEATURE: >> ** TODO Run the script >> =A0... >> > > You could use a sparse tree view: > > (add-to-list 'org-agenda-custom-commands > =A0 =A0 =A0 =A0 =A0 =A0 '("x" "PROJECT+N/A" tags-tree "PROJECT|TODO=3D\"T= ODO\"" > =A0 =A0 =A0 =A0 =A0 =A0 =A0 ((org-show-siblings nil) > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0(org-show-entry-below nil)))) > > Best, > Matt >