From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: [help] A org agenda command Date: Mon, 23 Apr 2007 15:24:21 +0200 Message-ID: <8bbaaec901190cf1570574695f22c1fa@science.uva.nl> References: Mime-Version: 1.0 (Apple Message framework v624) Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HfycE-0005f3-5v for emacs-orgmode@gnu.org; Mon, 23 Apr 2007 09:30:02 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HfycC-0005eq-NG for emacs-orgmode@gnu.org; Mon, 23 Apr 2007 09:30:01 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HfycC-0005en-IQ for emacs-orgmode@gnu.org; Mon, 23 Apr 2007 09:30:00 -0400 Received: from korteweg.uva.nl ([146.50.98.70]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1HfyWn-00066S-4w for emacs-orgmode@gnu.org; Mon, 23 Apr 2007 09:24:25 -0400 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: Leo Cc: emacs-orgmode@gnu.org On Apr 19, 2007, at 1:15, Leo wrote: > Dear all, > > How can I bring up a list of "stuck" projects? Here "stuck" means all > of > the following: > > 1. No DEADLINE/SCHEDULE > 2. No TODO Keywords > 3. No Tag > > Thank you. You need some way to tell what a project is, for example everything with level 2 that is not DONE. To indicate that any TODO keyword or any tag will label the project non-stuck, you currently have to list all TODO keywords and all TAGS in the variable `org-stuck-projects'. So right now you'd have to do something like: (setq org-stuck-projects '("+LEVEL=2/-DONE" ("TODO" "NEXT" ...) ("TAG1" "TAG2" ...))) I can see that this is unsatisfactory, so in the next version you will be able to specify "*" as a tag or a TODO keyword to indicate that you mean all of them. For now this will only work in the context of stuck projects. (setq org-stuck-projects '("+LEVEL=2/-DONE" ("*") ("*"))) - Carsten