Variable: org-agenda-jump-prefer-future
org-agenda-jump-prefer-future is a customizable variable defined in
org.el.gz.
Value
org-read-date-prefer-future
Documentation
Should the agenda jump command prefer the future for incomplete dates?
The default is to do the same as configured in org-read-date-prefer-future.
But you can also set a deviating value here.
This may t or nil, or the symbol org-read-date-prefer-future.
This variable was added, or its default value changed, in Emacs 24.1.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defcustom org-agenda-jump-prefer-future 'org-read-date-prefer-future
"Should the agenda jump command prefer the future for incomplete dates?
The default is to do the same as configured in `org-read-date-prefer-future'.
But you can also set a deviating value here.
This may t or nil, or the symbol `org-read-date-prefer-future'."
:group 'org-agenda
:group 'org-time
:version "24.1"
:type '(choice
(const :tag "Use org-read-date-prefer-future"
org-read-date-prefer-future)
(const :tag "Never" nil)
(const :tag "Always" t)))