From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matt Lundin Subject: Re: Help with a custom block agenda Date: Wed, 13 Jan 2010 13:57:39 -0500 Message-ID: <87my0hkf30.fsf@fastmail.fm> References: <87ocky6ir8.fsf@gmail.com> 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 1NV8OI-0003vG-O7 for emacs-orgmode@gnu.org; Wed, 13 Jan 2010 13:56:26 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NV8OE-0003tX-5i for emacs-orgmode@gnu.org; Wed, 13 Jan 2010 13:56:26 -0500 Received: from [199.232.76.173] (port=53862 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NV8OD-0003tS-Tw for emacs-orgmode@gnu.org; Wed, 13 Jan 2010 13:56:21 -0500 Received: from out1.smtp.messagingengine.com ([66.111.4.25]:53917) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NV8OD-0002uC-EA for emacs-orgmode@gnu.org; Wed, 13 Jan 2010 13:56:21 -0500 In-Reply-To: <87ocky6ir8.fsf@gmail.com> (Paul Mead's message of "Wed, 13 Jan 2010 17:02:03 +0000") 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: Paul Mead Cc: emacs-orgmode@gnu.org Hi Paul, Paul Mead writes: > I want the option to have TODO items with the tag "FOCUS" listed in both > the custom block agenda, and as a list in its own right. In the custom > block agenda however, I only want to see those which are unscheduled, > not WAITING, not STARTED as I've already listed those items above - it's > this section where I want to see all the FOCUS actions which I haven't > addressed yet. Does the following work? --8<---------------cut here---------------start------------->8--- (setq org-agenda-custom-commands '(("a" "Custom block Agenda" ((agenda "") (todo "STARTED") (tags "FOCUS/!-STARTED-WAITING" ((org-agenda-todo-ignore-scheduled t))))) ("d" todo "DONE" ((org-agenda-todo-ignore-scheduled nil) (org-agenda-todo-ignore-with-date nil) (org-agenda-todo-ignore-deadlines nil))) ("p" "Project list" tags "project") ("f" "FOCUS list" tags-todo "FOCUS") )) --8<---------------cut here---------------end--------------->8--- Best, Matt