summary refs log tree commit diff
path: root/emacs/custom/fcuny-org.el
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2021-10-11 07:28:42 -0700
committerFranck Cuny <franck@fcuny.net>2021-10-11 07:28:42 -0700
commit84a063fad889a102961a0bb8bb53c99b862fda39 (patch)
tree145a97f881e03972932575649c783ba1d49b5e15 /emacs/custom/fcuny-org.el
parentorg: active timestamp for journal and note entries (diff)
downloademacs.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 'emacs/custom/fcuny-org.el')
-rw-r--r--emacs/custom/fcuny-org.el4
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)