Fix org capture templates to use inactive timestamps.

This commit is contained in:
Ivan Malison 2015-01-26 00:41:59 -08:00
parent ef84ab9b2f
commit 68d4512d1c

View File

@ -760,7 +760,7 @@ the same tree node, and the headline of the tree node in the Org-mode file."
(file+headline ,org-calendar-file "Personal") (file+headline ,org-calendar-file "Personal")
"* %? %T "* %? %T
:PROPERTIES: :PROPERTIES:
:CREATED: %^T :CREATED: %U
:END:")) :END:"))
(add-to-list 'org-capture-templates (add-to-list 'org-capture-templates
@ -771,9 +771,9 @@ the same tree node, and the headline of the tree node in the Org-mode file."
(add-to-list 'org-capture-templates (add-to-list 'org-capture-templates
`("h" "Habit" entry (file+headline ,org-habits-file "Habits") `("h" "Habit" entry (file+headline ,org-habits-file "Habits")
"* TODO "* TODO
SCHEDULED: %t SCHEDULED: %^t
:PROPERTIES: :PROPERTIES:
:CREATED: %T :CREATED: %U
:STYLE: habit :STYLE: habit
:END:")) :END:"))