Variable: org-agenda-max-tags
org-agenda-max-tags is a customizable variable defined in
org-agenda.el.gz.
Value
nil
Documentation
Maximum number of tagged entries to display in an agenda.
This can be nil (no limit) or an integer or an alist of agenda types with an associated number of entries to display in this type.
This variable was added, or its default value changed, in Org version
8.0.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defcustom org-agenda-max-tags nil
"Maximum number of tagged entries to display in an agenda.
This can be nil (no limit) or an integer or an alist of agenda
types with an associated number of entries to display in this
type."
:version "24.4"
:package-version '(Org . "8.0")
:group 'org-agenda-custom-commands
:type '(choice (symbol :tag "No limit" nil)
(integer :tag "Max number of tagged entries")
(repeat
(cons (choice :tag "Agenda type"
(const agenda)
(const todo)
(const tags)
(const search))
(integer :tag "Max number of tagged entries")))))