diff options
author | Franck Cuny <franck@fcuny.net> | 2021-10-11 07:28:42 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2021-10-11 07:28:42 -0700 |
commit | 84a063fad889a102961a0bb8bb53c99b862fda39 (patch) | |
tree | 145a97f881e03972932575649c783ba1d49b5e15 /emacs | |
parent | org: active timestamp for journal and note entries (diff) | |
download | emacs.d-84a063fad889a102961a0bb8bb53c99b862fda39.tar.gz |
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.
Diffstat (limited to '')
-rw-r--r-- | emacs/custom/fcuny-org.el | 4 |
1 files changed, 2 insertions, 2 deletions
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) |