Variable: org-agenda-show-future-repeats

org-agenda-show-future-repeats is a customizable variable defined in org-agenda.el.gz.

Value

t

Documentation

Non-nil shows repeated entries in the future part of the agenda.

When set to the symbol next only the first future repeat is shown.

This variable was added, or its default value changed, in Org version
9.1.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defcustom org-agenda-show-future-repeats t
  "Non-nil shows repeated entries in the future part of the agenda.
When set to the symbol `next' only the first future repeat is shown."
  :group 'org-agenda-daily/weekly
  :type '(choice
	  (const :tag "Show all repeated entries" t)
	  (const :tag "Show next repeated entry" next)
	  (const :tag "Do not show repeated entries" nil))
  :version "26.1"
  :package-version '(Org . "9.1")
  :safe #'symbolp)