lang/org: include full datetime in notes/changelog entries

This commit is contained in:
Henrik Lissner 2019-10-31 23:12:35 -04:00
parent 249a9aab6d
commit c80413fabc
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -268,10 +268,10 @@ I like:
"* TODO %?\n%i\n%a" :prepend t) "* TODO %?\n%i\n%a" :prepend t)
("pn" "Project-local notes" entry ; {project-root}/notes.org ("pn" "Project-local notes" entry ; {project-root}/notes.org
(file+headline +org-capture-project-notes-file "Inbox") (file+headline +org-capture-project-notes-file "Inbox")
"* %?\n%i\n%a" :prepend t) "* %U %?\n%i\n%a" :prepend t)
("pc" "Project-local changelog" entry ; {project-root}/changelog.org ("pc" "Project-local changelog" entry ; {project-root}/changelog.org
(file+headline +org-capture-project-changelog-file "Unreleased") (file+headline +org-capture-project-changelog-file "Unreleased")
"* %?\n%i\n%a" :prepend t) "* %U %?\n%i\n%a" :prepend t)
;; Will use {org-directory}/{+org-capture-projects-file} and store ;; Will use {org-directory}/{+org-capture-projects-file} and store
;; these under {ProjectName}/{Tasks,Notes,Changelog} headings. They ;; these under {ProjectName}/{Tasks,Notes,Changelog} headings. They
@ -285,12 +285,12 @@ I like:
:prepend nil) :prepend nil)
("on" "Project notes" entry ("on" "Project notes" entry
(function +org-capture-central-project-notes-file) (function +org-capture-central-project-notes-file)
"* %?\n %i\n %a" "* %U %?\n %i\n %a"
:heading "Notes" :heading "Notes"
:prepend t) :prepend t)
("oc" "Project changelog" entry ("oc" "Project changelog" entry
(function +org-capture-central-project-changelog-file) (function +org-capture-central-project-changelog-file)
"* %?\n %i\n %a" "* %U %?\n %i\n %a"
:heading "Changelog" :heading "Changelog"
:prepend t))) :prepend t)))