Variable: org-habit-scheduled-past-days

org-habit-scheduled-past-days is a customizable variable defined in org-habit.el.gz.

Value

nil

Documentation

Value to use instead of org-scheduled-past-days, for habits only.

If nil, org-scheduled-past-days is used.

Setting this to say 10000 is a way to make habits always show up as a reminder, even if you set org-scheduled-past-days to a small value because you regard scheduled items as a way of
"turning on" TODO items on a particular date, rather than as a
means of creating calendar-based reminders.

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

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-habit.el.gz
(defcustom org-habit-scheduled-past-days nil
  "Value to use instead of `org-scheduled-past-days', for habits only.

If nil, `org-scheduled-past-days' is used.

Setting this to say 10000 is a way to make habits always show up
as a reminder, even if you set `org-scheduled-past-days' to a
small value because you regard scheduled items as a way of
\"turning on\" TODO items on a particular date, rather than as a
means of creating calendar-based reminders."
  :group 'org-habit
  :type '(choice integer (const nil))
  :package-version '(Org . "9.3")
  :safe (lambda (v) (or (integerp v) (null v))))