From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: Stuck projects not ignoring inherited tags Date: Thu, 19 Feb 2009 15:59:32 +0100 Message-ID: References: Mime-Version: 1.0 (Apple Message framework v930.3) 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 1LaANI-0001Tq-C9 for emacs-orgmode@gnu.org; Thu, 19 Feb 2009 09:59:40 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LaANG-0001TS-O3 for emacs-orgmode@gnu.org; Thu, 19 Feb 2009 09:59:39 -0500 Received: from [199.232.76.173] (port=40330 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LaANG-0001TP-IA for emacs-orgmode@gnu.org; Thu, 19 Feb 2009 09:59:38 -0500 Received: from mail-bw0-f160.google.com ([209.85.218.160]:42741) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LaANF-0003g1-Tm for emacs-orgmode@gnu.org; Thu, 19 Feb 2009 09:59:38 -0500 Received: by bwz4 with SMTP id 4so1238925bwz.18 for ; Thu, 19 Feb 2009 06:59:36 -0800 (PST) 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: Paul Mead Cc: emacs-orgmode@gnu.org On Feb 13, 2009, at 4:29 PM, Paul Mead wrote: > Hi, I've tried to configure stuck projects to ignore my 'Someday / > maybe' tree, > by tagging the heading with 'someday' and then setting org-stuck- > projects to > ignore it. > > I've used Customize, but the code in .emacs comes out as: > > '(org-stuck-projects (quote ("+LEVEL=2/-DONE" ("TODO" "WAITING" > "AGENDA" > "STARTED") ("someday") "")))) > > Unfortunately it doesn't ignore the subtrees unless I directly tag > each item. That is right, the tags part (where you use "someday") is not a full tags matcher, it does not consider inheritance, only local tags. However, you can do this in the initial match. Make it "+LEVEL>=2-someday/-DONE" note that the level is >=2, not =2 anymore. Alternatively, write your own skipping condition `using org-agenda-skip-subtree-if'. > Is there a way of setting this up so that it ignores the inherited > tags? > Also, is there any syntax documentation for this variable, as I > dislike using > Customize. The docstring of that variable does describe what its value needs to look like. Is that not extensive enough? - Carsten