Variable: org-agenda-max-effort
org-agenda-max-effort is a customizable variable defined in
org-agenda.el.gz.
Value
nil
Documentation
Maximum cumulated effort duration for the agenda.
This can be nil (no limit) or a number of minutes (as an integer) or an alist of agenda types with an associated number of minutes to limit entries to 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-effort nil
"Maximum cumulated effort duration for the agenda.
This can be nil (no limit) or a number of minutes (as an integer)
or an alist of agenda types with an associated number of minutes
to limit entries to 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 minutes")
(repeat
(cons (choice :tag "Agenda type"
(const agenda)
(const todo)
(const tags)
(const search))
(integer :tag "Max number of minutes")))))