Variable: org-agenda-insert-diary-strategy

org-agenda-insert-diary-strategy is a customizable variable defined in org-agenda.el.gz.

Value

date-tree

Documentation

Where in org-agenda-diary-file should new entries be added? Valid values:

date-tree in the date tree, as first child of the date
date-tree-last in the date tree, as last child of the date
top-level as top-level entries at the end of the file.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defcustom org-agenda-insert-diary-strategy 'date-tree
  "Where in `org-agenda-diary-file' should new entries be added?
Valid values:

date-tree         in the date tree, as first child of the date
date-tree-last    in the date tree, as last child of the date
top-level         as top-level entries at the end of the file."
  :group 'org-agenda
  :type '(choice
	  (const :tag "first in a date tree" date-tree)
	  (const :tag "last in a date tree" date-tree-last)
	  (const :tag "as top level at end of file" top-level)))