Variable: org-agenda-add-entry-text-maxlines

org-agenda-add-entry-text-maxlines is a customizable variable defined in org-agenda.el.gz.

Value

0

Documentation

Maximum number of entry text lines to be added to agenda.

This is only relevant when org-agenda-add-entry-text is part of org-agenda-before-write-hook, which is the default. When this is 0, nothing will happen. When it is greater than 0, it specifies the maximum number of lines that will be added for each entry that is listed in the agenda view.

Note that this variable is not used during display, only when exporting the agenda. For agenda display, see the variables org-agenda-entry-text-mode(var)/org-agenda-entry-text-mode(fun) and org-agenda-entry-text-maxlines.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defcustom org-agenda-add-entry-text-maxlines 0
  "Maximum number of entry text lines to be added to agenda.
This is only relevant when `org-agenda-add-entry-text' is part of
`org-agenda-before-write-hook', which is the default.
When this is 0, nothing will happen.  When it is greater than 0, it
specifies the maximum number of lines that will be added for each entry
that is listed in the agenda view.

Note that this variable is not used during display, only when exporting
the agenda.  For agenda display, see the variables `org-agenda-entry-text-mode'
and `org-agenda-entry-text-maxlines'."
  :group 'org-agenda
  :type 'integer)