Variable: org-fast-tag-selection-maximum-tags
org-fast-tag-selection-maximum-tags is a customizable variable defined
in org.el.gz.
Value
56
Documentation
Set the maximum tags number for fast tag selection.
This variable only affects tags without explicit key bindings outside tag groups. All the tags with user bindings and all the tags corresponding to tag groups are always displayed.
When the number of tags with bindings + tags inside tag groups is
smaller than org-fast-tag-selection-maximum-tags, tags without
explicit bindings will be assigned a binding and displayed up to the
limit.
This variable was added, or its default value changed, in Org version
9.7.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defcustom org-fast-tag-selection-maximum-tags (length org--fast-tag-selection-keys)
"Set the maximum tags number for fast tag selection.
This variable only affects tags without explicit key bindings outside
tag groups. All the tags with user bindings and all the tags
corresponding to tag groups are always displayed.
When the number of tags with bindings + tags inside tag groups is
smaller than `org-fast-tag-selection-maximum-tags', tags without
explicit bindings will be assigned a binding and displayed up to the
limit."
:package-version '(Org . "9.7")
:group 'org-tags
:type 'number
:safe #'numberp)