Variable: org-agenda-skip-scheduled-delay-if-deadline

org-agenda-skip-scheduled-delay-if-deadline is a customizable variable defined in org-agenda.el.gz.

Value

nil

Documentation

Non-nil means skip scheduled delay when entry also has a deadline.

This variable may be set to nil, t, the symbol post-deadline, or a number which will then give the number of days after the actual scheduled date when the delay should expire. The symbol post-deadline eliminates the schedule delay when the date is posterior to the deadline.

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-skip-scheduled-delay-if-deadline nil
  "Non-nil means skip scheduled delay when entry also has a deadline.
This variable may be set to nil, t, the symbol `post-deadline',
or a number which will then give the number of days after the actual
scheduled date when the delay should expire.  The symbol `post-deadline'
eliminates the schedule delay when the date is posterior to the deadline."
  :group 'org-agenda-skip
  :group 'org-agenda-daily/weekly
  :version "24.4"
  :package-version '(Org . "8.0")
  :type '(choice
	  (const :tag "Always honor delay" nil)
	  (const :tag "Ignore delay if posterior to the deadline" post-deadline)
	  (const :tag "Ignore delay if entry has a deadline" t)
	  (integer :tag "Honor delay up until N days after the scheduled date")))