From mboxrd@z Thu Jan 1 00:00:00 1970 From: PT Subject: Re: Filtering the global todo list in a custom agenda Date: Wed, 30 Sep 2009 18:20:35 +0000 (UTC) Message-ID: References: <4EFF2D9E-7DAF-4F64-9391-BFF48F3D890C@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Mt3ni-0002cy-SG for emacs-orgmode@gnu.org; Wed, 30 Sep 2009 14:21:18 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Mt3nd-0002Ux-Ry for emacs-orgmode@gnu.org; Wed, 30 Sep 2009 14:21:18 -0400 Received: from [199.232.76.173] (port=38227 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mt3nd-0002Ua-DV for emacs-orgmode@gnu.org; Wed, 30 Sep 2009 14:21:13 -0400 Received: from lo.gmane.org ([80.91.229.12]:35389) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Mt3nd-0004wU-0w for emacs-orgmode@gnu.org; Wed, 30 Sep 2009 14:21:13 -0400 Received: from list by lo.gmane.org with local (Exim 4.50) id 1Mt3nQ-0003UF-C0 for emacs-orgmode@gnu.org; Wed, 30 Sep 2009 20:21:00 +0200 Received: from dsl51B79233.pool.t-online.hu ([81.183.146.51]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 30 Sep 2009 20:21:00 +0200 Received: from spamfilteraccount by dsl51B79233.pool.t-online.hu with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 30 Sep 2009 20:21:00 +0200 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 Carsten Dominik gmail.com> writes: > > > > The todo agenda is not very good in matching. Better to use the tags- > todo view, but specify no tags, onlt a todo match after the slash: > > (setq org-agenda-custom-commands > '(("h" "Agenda and todo" > ((agenda "") > (tags-todo "/-test"))))) The problem with tags-todo it also shows the TODO items with active timestamps, but I don't want them there (they show up in the agenda block), that's why I have org-agenda-todo-ignore-with-date set to t. And that's why I tried to filter alltodo, because tags-todo ignores this setting. :(