From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: Filtering the global todo list in a custom agenda Date: Wed, 30 Sep 2009 17:27:24 +0200 Message-ID: <4EFF2D9E-7DAF-4F64-9391-BFF48F3D890C@gmail.com> References: Mime-Version: 1.0 (Apple Message framework v936) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Mt15c-0006KK-Dh for emacs-orgmode@gnu.org; Wed, 30 Sep 2009 11:27:36 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Mt15X-0006IY-IH for emacs-orgmode@gnu.org; Wed, 30 Sep 2009 11:27:35 -0400 Received: from [199.232.76.173] (port=43438 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mt15X-0006IT-BU for emacs-orgmode@gnu.org; Wed, 30 Sep 2009 11:27:31 -0400 Received: from mail-ew0-f208.google.com ([209.85.219.208]:35800) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Mt15W-0004vN-5T for emacs-orgmode@gnu.org; Wed, 30 Sep 2009 11:27:30 -0400 Received: by ewy4 with SMTP id 4so4554739ewy.31 for ; Wed, 30 Sep 2009 08:27:29 -0700 (PDT) In-Reply-To: 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: PT Cc: emacs-orgmode@gnu.org On Sep 30, 2009, at 2:07 PM, PT wrote: > I'm trying to filter the global todo list, so that items with certain > tags don't appear in it, but this solution doesn't seem to work: > > (setq org-agenda-custom-commands > '(("h" "Agenda and todo" > ((agenda "") > (alltodo "-test"))))) > 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"))))) - Carsten > > Items with "test" tag are shown nevertheless. How could I filter them? > > > > > > _______________________________________________ > Emacs-orgmode mailing list > Remember: use `Reply All' to send replies to the list. > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode