Variable: org-icalendar-include-todo

org-icalendar-include-todo is a customizable variable defined in ox-icalendar.el.gz.

Value

nil

Documentation

Non-nil means create VTODO components from TODO items.

Valid values are:
nil don't include any task.
t include tasks that are not in DONE state.
unblocked include all TODO items that are not blocked.
all include both done and not done items.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-icalendar.el.gz
(defcustom org-icalendar-include-todo nil
  "Non-nil means create VTODO components from TODO items.

Valid values are:
nil                  don't include any task.
t                    include tasks that are not in DONE state.
`unblocked'          include all TODO items that are not blocked.
`all'                include both done and not done items."
  :group 'org-export-icalendar
  :type '(choice
	  (const :tag "None" nil)
	  (const :tag "Unfinished" t)
	  (const :tag "Unblocked" unblocked)
	  (const :tag "All" all)
	  (repeat :tag "Specific TODO keywords"
		  (string :tag "Keyword"))))