Variable: org-use-fast-tag-selection

org-use-fast-tag-selection is a customizable variable defined in org.el.gz.

Value

auto

Documentation

Non-nil means use fast tag selection scheme.

This is a special interface to select and deselect tags with single keys. When nil, fast selection is never used. When the symbol auto, fast selection is used if and only if selection characters for tags have been configured, either through the variable org-tag-alist or through a #+TAGS line in the buffer. When t, fast selection is always used and selection keys are assigned automatically if necessary.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defcustom org-use-fast-tag-selection 'auto
  "Non-nil means use fast tag selection scheme.
This is a special interface to select and deselect tags with single keys.
When nil, fast selection is never used.
When the symbol `auto', fast selection is used if and only if selection
characters for tags have been configured, either through the variable
`org-tag-alist' or through a #+TAGS line in the buffer.
When t, fast selection is always used and selection keys are assigned
automatically if necessary."
  :group 'org-tags
  :type '(choice
	  (const :tag "Always" t)
	  (const :tag "Never" nil)
	  (const :tag "When selection characters are configured" auto)))