From mboxrd@z Thu Jan 1 00:00:00 1970 From: Karl Maihofer Subject: Adding tags, grouping tags Date: Thu, 14 Oct 2010 20:22:43 +0200 Message-ID: <4CB74A73.2090202@gmx.de> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Return-path: Received: from [140.186.70.92] (port=60745 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P6STH-0008Oz-L1 for emacs-orgmode@gnu.org; Thu, 14 Oct 2010 14:24:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1P6SRy-0004hN-Lk for emacs-orgmode@gnu.org; Thu, 14 Oct 2010 14:22:47 -0400 Received: from smtprelay01.ispgateway.de ([80.67.29.23]:40987) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1P6SRy-0004h5-Gj for emacs-orgmode@gnu.org; Thu, 14 Oct 2010 14:22:46 -0400 Received: from [80.132.49.82] (helo=[192.168.178.113]) by smtprelay01.ispgateway.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.68) (envelope-from ) id 1P6SRw-0001nv-6x for emacs-orgmode@gnu.org; Thu, 14 Oct 2010 20:22:44 +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 I'd like to define many many tags and use numerics (1-0) as selection keys. I want to define tags for different clients, people, gtd-contexts, and other contexts. So I had the idea to group the tags (less than ten tags per group) to be able to define selection keys for every tag. I already use groups for my custom agenda views (see example below). So when I hit C-c a, Org only shows the agenda groups (besides the default agenda commands) and I do not get to the actual agenda commands until I hit Q. This enables me to use the keys 1, 2, 3, 4 several times for different agenda commands (in different groups). Example: (setq org-agenda-custom-commands '(("Q" . "Custom queries") ;; gives label to "Q" ("Q1" "Archive search" search "" ((org-agenda-files (file-expand-wildcards "~/archive/*.org")))) ("Q2" "Website search" search "" ((org-agenda-files (file-expand-wildcards "~/website/*.org")))) ("Q3" "Projects and Archive" search "" ((org-agenda-text-search-extra-files (file-expand-wildcards "~/archive/*.org")))) ;; searches both projects and archive directories ("Q4" "Archive tags search" org-tags-view "" ((org-agenda-files (file-expand-wildcards "~/archive/*.org")))) ;; ...other commands here )) Is something similar possible for adding tags?