From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paul Mead Subject: Re: Help with a custom block agenda Date: Wed, 13 Jan 2010 20:17:18 +0000 Message-ID: <87hbqp7oa9.fsf@gmail.com> References: <87ocky6ir8.fsf@gmail.com> <87my0hkf30.fsf@fastmail.fm> 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 1NV9es-0005RC-BJ for emacs-orgmode@gnu.org; Wed, 13 Jan 2010 15:17:38 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NV9eo-0005Q0-UL for emacs-orgmode@gnu.org; Wed, 13 Jan 2010 15:17:38 -0500 Received: from [199.232.76.173] (port=52372 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NV9eo-0005Px-MQ for emacs-orgmode@gnu.org; Wed, 13 Jan 2010 15:17:34 -0500 Received: from mail-ew0-f209.google.com ([209.85.219.209]:51392) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NV9eo-0000I4-6D for emacs-orgmode@gnu.org; Wed, 13 Jan 2010 15:17:34 -0500 Received: by ewy1 with SMTP id 1so23415ewy.8 for ; Wed, 13 Jan 2010 12:17:26 -0800 (PST) In-Reply-To: <87my0hkf30.fsf@fastmail.fm> (Matt Lundin's message of "Wed, 13 Jan 2010 13:57:39 -0500") 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: emacs-orgmode@gnu.org Matt Lundin writes: >> 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? > > (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") > )) THanks Matt, that very nearly works, it certainly gets rid of the WAITING and STARTED, but I can still see the scheduled items - the org-agenda-todo-ignore-scheduled bit doesn't seem to have any effect. It's odd, given that the same syntax later in the list seems to have the desired effect. Any thoughts? Thanks Paul