From 86a9f2812a36ce800b9d8a3f3e2bd547091f95da Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Thu, 5 Feb 2015 14:11:42 -0800 Subject: [PATCH] put timestams in body instead of headline of calendar entries. --- dotfiles/emacs.d/init.el | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/dotfiles/emacs.d/init.el b/dotfiles/emacs.d/init.el index 3609ea21..48b7097c 100644 --- a/dotfiles/emacs.d/init.el +++ b/dotfiles/emacs.d/init.el @@ -810,18 +810,20 @@ the same tree node, and the headline of the tree node in the Org-mode file." (add-to-list 'org-capture-templates `("c" "Calendar entry" entry (file+headline ,org-calendar-file "Personal") - "* %? %^T + "* %? :PROPERTIES: :CREATED: %U - :END:")) + :END: +%^T")) (add-to-list 'org-capture-templates `("y" "Linked Calendar entry" entry (file+headline ,org-calendar-file "Personal") - "* %? %A %^T + "* %? %A :PROPERTIES: :CREATED: %U - :END:")) + :END: +%^T")) (add-to-list 'org-capture-templates `("h" "Habit" entry (file+headline ,org-habits-file "Habits")