From 84a063fad889a102961a0bb8bb53c99b862fda39 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Mon, 11 Oct 2021 07:28:42 -0700 Subject: org: active timestamp in drawer for note/journal Instead of having the active timestamp in the header, we can store it in the drawer. There's not a lot of value for having this in the header, we mostly care about the creation time for the agenda. --- emacs/custom/fcuny-org.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'emacs/custom/fcuny-org.el') diff --git a/emacs/custom/fcuny-org.el b/emacs/custom/fcuny-org.el index ba7e6ac..faaae8d 100644 --- a/emacs/custom/fcuny-org.el +++ b/emacs/custom/fcuny-org.el @@ -154,10 +154,10 @@ "* TODO [#D] %?\n:PROPERTIES:\n:CREATED: %U\n:END:\n") ("n" "Note" entry (file "inbox.org") - "* %t %?\n:PROPERTIES:\n:CREATED: %U\n:END:\n") + "* %?\n:PROPERTIES:\n:CREATED: %T\n:END:\n") ("j" "Journal" entry (file+olp+datetree "journal.org") - "* %t %?\n:PROPERTIES:\n:CREATED: %U\n:END:\n" :tree-type month)))) + "* %?\n:PROPERTIES:\n:CREATED: %T\n:END:\n" :tree-type month)))) (provide 'fcuny-org) -- cgit 1.4.1