Variable: org-agenda-span
org-agenda-span is a customizable variable defined in
org-agenda.el.gz.
Value
week
Documentation
Number of days to include in overview display.
Can be day, week, month, year, or any number of days. Custom commands can set this variable in the options section.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defcustom org-agenda-span 'week
"Number of days to include in overview display.
Can be day, week, month, year, or any number of days.
Custom commands can set this variable in the options section."
:group 'org-agenda-daily/weekly
:type '(choice (const :tag "Day" day)
(const :tag "Week" week)
(const :tag "Fortnight" fortnight)
(const :tag "Month" month)
(const :tag "Year" year)
(integer :tag "Custom")))