From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: Re: How to get a list of todos with no TAGS Date: Fri, 07 Sep 2007 16:18:19 +0200 Message-ID: <877in2h844.fsf@bzg.ath.cx> References: <87hcm6h9mg.fsf@bzg.ath.cx> 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 1ITefH-0002GI-91 for emacs-orgmode@gnu.org; Fri, 07 Sep 2007 10:18:31 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1ITefF-0002G4-OD for emacs-orgmode@gnu.org; Fri, 07 Sep 2007 10:18:30 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ITefF-0002G1-IY for emacs-orgmode@gnu.org; Fri, 07 Sep 2007 10:18:29 -0400 Received: from hu-out-0506.google.com ([72.14.214.234]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1ITefF-0002Q8-5v for emacs-orgmode@gnu.org; Fri, 07 Sep 2007 10:18:29 -0400 Received: by hu-out-0506.google.com with SMTP id 23so150569huc for ; Fri, 07 Sep 2007 07:18:28 -0700 (PDT) In-Reply-To: (Rainer Stengele's message of "Fri, 07 Sep 2007 16:05:04 +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 Rainer Stengele writes: > C-c a t does not show a todo without a tag. My fault. Its job is to show all TODO entries. This custom command will list all TODO entries (matching "TODO" as a TODO keyword) with no tags: (setq org-agenda-custom-commands '(("x" todo "TODO" ((org-agenda-skip-function (lambda nil (org-agenda-skip-entry-if 'regexp ":[[:alnum:]:_@]+:[ \t]*"))) (org-agenda-overriding-header "TODO entries with no tags: "))))) Try it with `C-c a x'. -- Bastien