Variable: org-sparse-tree-default-date-type
org-sparse-tree-default-date-type is a customizable variable defined
in org.el.gz.
Value
nil
Documentation
The default date type when building a sparse tree.
When this is nil, a date is a scheduled or a deadline timestamp. Otherwise, these types are allowed:
all: all timestamps
active: only active timestamps (<...>)
inactive: only inactive timestamps ([...])
scheduled: only scheduled timestamps
deadline: only deadline timestamps
This variable was added, or its default value changed, in Org version
8.3.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defcustom org-sparse-tree-default-date-type nil
"The default date type when building a sparse tree.
When this is nil, a date is a scheduled or a deadline timestamp.
Otherwise, these types are allowed:
all: all timestamps
active: only active timestamps (<...>)
inactive: only inactive timestamps ([...])
scheduled: only scheduled timestamps
deadline: only deadline timestamps"
:type '(choice (const :tag "Scheduled or deadline" nil)
(const :tag "All timestamps" all)
(const :tag "Only active timestamps" active)
(const :tag "Only inactive timestamps" inactive)
(const :tag "Only scheduled timestamps" scheduled)
(const :tag "Only deadline timestamps" deadline)
(const :tag "Only closed timestamps" closed))
:version "26.1"
:package-version '(Org . "8.3")
:group 'org-sparse-trees)