From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matt Lundin Subject: Re: Customizing main Agenda view?? Date: Tue, 11 Aug 2009 11:20:33 -0400 Message-ID: <877hxa9y2m.fsf@fastmail.fm> 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 1Mat5s-0005tI-EM for emacs-orgmode@gnu.org; Tue, 11 Aug 2009 11:16:56 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Mat5n-0005o7-Nh for emacs-orgmode@gnu.org; Tue, 11 Aug 2009 11:16:55 -0400 Received: from [199.232.76.173] (port=47422 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mat5n-0005nl-Ct for emacs-orgmode@gnu.org; Tue, 11 Aug 2009 11:16:51 -0400 Received: from out1.smtp.messagingengine.com ([66.111.4.25]:34421) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Mat5m-0004Ef-SS for emacs-orgmode@gnu.org; Tue, 11 Aug 2009 11:16:51 -0400 In-Reply-To: (Paul Mead's message of "Tue, 11 Aug 2009 15:49:57 +0100") 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 Paul Mead writes: > I'd like to be able to see all my todo items which use the STARTED > keyword in my main daily agenda view. I do most of my work from the > daily view and I can't seem to get into the habit of using other > views. Is this possible? > > If there's no way to customize the view directly, is there a way I can > trigger a scheduled property for today's date when I set the todo > keyword to STARTED? I'm a bit confused. Am I correct in understanding that you'd like to customize the agenda view but you don't want a custom agenda view? I'm not sure how that would work. ;) Or is it rather that the keybinding C-c a a is "hardwired" -- i.e., you'd like a custom agenda view mapped to that keybinding? Here are two solutions: 1. Map C-c a a to a custom agenda view: --8<---------------cut here---------------start------------->8--- (setq org-agenda-custom-commands '(("a" "Agenda" ((agenda "") (todo "STARTED"))))) --8<---------------cut here---------------end--------------->8--- 2. For minimal customization, you could set the variable org-agenda-include-all-todo to t. In this second scenario, all your active todos will be added to a section *above* the daily agenda view. Then you can browse your "STARTED" todos. E.g., if you want to stick with basic emacs tools (rather than custom agenda commands), you could use "occur" to see all filter out your STARTED todos. A more complex option: If you want to be able to filter for your STARTED todos you could set org-todo-state-tag-triggers to tag each of your items with a custom tag, e.g., STARTED, whenever you switch to the STARTED todo state. Then typing / "STARTED" in the agenda view would show you only your started todos. Best, Matt