From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: my simple GTD setup Date: Sat, 29 Sep 2007 15:50:44 +0200 Message-ID: <87odflshqj.fsf@bzg.ath.cx> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IbciZ-0001Y7-H4 for emacs-orgmode@gnu.org; Sat, 29 Sep 2007 09:50:51 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IbciY-0001Xc-0l for emacs-orgmode@gnu.org; Sat, 29 Sep 2007 09:50:51 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IbciX-0001XX-Rn for emacs-orgmode@gnu.org; Sat, 29 Sep 2007 09:50:49 -0400 Received: from ug-out-1314.google.com ([66.249.92.171]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IbciX-0000oU-I4 for emacs-orgmode@gnu.org; Sat, 29 Sep 2007 09:50:49 -0400 Received: by ug-out-1314.google.com with SMTP id m4so1927203uge for ; Sat, 29 Sep 2007 06:50:48 -0700 (PDT) In-Reply-To: (David O'Toole's message of "Fri, 28 Sep 2007 02:18:20 -0400") 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: emacs-orgmode@gnu.org David O'Toole writes: > - I am having trouble with searching for all the "NEXT" keyword > items, which is all I really need to complete my setup. I can see > the list of NEXT actions, but not what project they come from or > what tags they have. Do you use a custom agenda view for this? with `org-agenda-remove-tags' set to nil, and with the project being the category in which the headline is, you should have all the desired info. Global list of TODO items of type: NEXT Available with `N r': (0)ALL (1)TODO (2)NEXT (3)DONE compas: NEXT [#A] Mettre en place ... compas: NEXT [#A] Ecrire Nicolas .... :Write: compas: NEXT [#A] Mettre en forme ... :Write: You can also refine this display by adding a new entry to `org-agenda-custom-commands': (setq org-agenda-custom-commands (("N" todo "NEXT" ((org-agenda-sorting-strategy '(priority-down)) (org-agenda-prefix-format " %-12c: "))))) See `org-agenda-prefix-format' docstring for details. -- Bastien