summaryrefslogtreecommitdiffhomepage
path: root/lib/doc/jao-org-notes.el
diff options
context:
space:
mode:
authorjao <jao@gnu.org>2025-11-23 16:11:10 +0000
committerjao <jao@gnu.org>2025-11-23 16:11:10 +0000
commitf4db87fae6c1bdbef6a48105ee86a5c9b7b679b3 (patch)
tree303e70bbf5d2e2adb885f19fb2547da671955d99 /lib/doc/jao-org-notes.el
parent28c7b82eb5430af794191e37e1adba6f7728ac62 (diff)
downloadelibs-f4db87fae6c1bdbef6a48105ee86a5c9b7b679b3.tar.gz
elibs-f4db87fae6c1bdbef6a48105ee86a5c9b7b679b3.tar.bz2
org-notes: nit: date after tags
Diffstat (limited to 'lib/doc/jao-org-notes.el')
-rw-r--r--lib/doc/jao-org-notes.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/doc/jao-org-notes.el b/lib/doc/jao-org-notes.el
index af8f10a..dde2b8c 100644
--- a/lib/doc/jao-org-notes.el
+++ b/lib/doc/jao-org-notes.el
@@ -181,10 +181,10 @@ appear in any order in the tags list.
"Create a new note file, matching tags and titles with completion."
(interactive)
(when (jao-org-notes--insert-title title)
- (org-insert-time-stamp (current-time) t t "#+date: " "\n")
(insert "#+tags: :"
(mapconcat #'identity (jao-org-notes--read-tags) ":")
- ":\n"))
+ ":\n")
+ (org-insert-time-stamp (current-time) t t "#+date: " "\n"))
(save-buffer)
(current-buffer))