Variable: org-scheduled-delay-days
org-scheduled-delay-days is a customizable variable defined in
org.el.gz.
Value
0
Documentation
Number of days before a scheduled item becomes active.
This variable governs the display in sparse trees and in the agenda. The default value (i.e. 0) means: don't delay scheduled item. When negative, it means use this number (the absolute value of it) even if a scheduled item has a different individual delay time specified.
Custom commands can set this variable in the options section.
This variable was added, or its default value changed, in Org version
8.0.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defcustom org-scheduled-delay-days 0
"Number of days before a scheduled item becomes active.
This variable governs the display in sparse trees and in the agenda.
The default value (i.e. 0) means: don't delay scheduled item.
When negative, it means use this number (the absolute value of it)
even if a scheduled item has a different individual delay time
specified.
Custom commands can set this variable in the options section."
:group 'org-time
:group 'org-agenda-daily/weekly
:version "24.4"
:package-version '(Org . "8.0")
:type 'integer)