From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jeff Kowalczyk Subject: Re: #+TAGS has some groups with many entries, suppress hotkey assignment Date: Tue, 17 Sep 2013 15:56:09 +0000 (UTC) Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59791) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VLxdo-0007PR-Fl for emacs-orgmode@gnu.org; Tue, 17 Sep 2013 11:56:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VLxdh-0001Bo-4U for emacs-orgmode@gnu.org; Tue, 17 Sep 2013 11:56:40 -0400 Received: from plane.gmane.org ([80.91.229.3]:51940) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VLxdg-0001Bi-Ts for emacs-orgmode@gnu.org; Tue, 17 Sep 2013 11:56:33 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1VLxdd-0003G6-73 for emacs-orgmode@gnu.org; Tue, 17 Sep 2013 17:56:29 +0200 Received: from 216.115.1.60 ([216.115.1.60]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 17 Sep 2013 17:56:29 +0200 Received: from jeff.kowalczyk by 216.115.1.60 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 17 Sep 2013 17:56:29 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Carsten Dominik writes: > Please take a look at the variable org-use-fast-tag-selection > and see if there is a setting that you find useful. Thanks Carsten, 'auto is the behaviour I am seeking. Is org-use-fast-tag-selection 'auto working as intended? It seems to be acting like value t as described in the function doc string. My Emacs 24 with org-mode git master has the default value: : org-use-fast-tag-selection : auto I can reproduce a minimal test file: #+TAGS: { admin(a) reporting(r) util(u) foo } #+TAGS: { projecta projectb projectc(c) } #+TAGS: { billable(b) nonbillable(e) unknown(k) } * headline Where C-c C-c on headline gives the selector: Inherited: Current: { [a] admin [r] reporting [u] util [f] foo } { [p] projecta [d] projectb [c] projectc } { [b] billable [e] nonbillable [k] unknown } I would have anticipated only explicit single key selectors, e.g.: Inherited: Current: { [a] admin [r] reporting [u] util foo } { projecta projectb [c] projectc } { [b] billable [e] nonbillable [k] unknown } Thanks, Jeff