summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2022-08-17 11:44:31 +0100
committerYann Herklotz <git@yannherklotz.com>2022-08-17 11:44:31 +0100
commit7278052cb451178a2f1ffc61569156ca0adcc34a (patch)
tree74a5d8dfb74bd197f7185818becd40c548f0356e
parent9eb18ecd93895a9894970fa85b68257da647812d (diff)
downloadorg-zettelkasten-7278052cb451178a2f1ffc61569156ca0adcc34a.tar.gz
org-zettelkasten-7278052cb451178a2f1ffc61569156ca0adcc34a.zip
Add function to update modification time
-rw-r--r--ChangeLog6
-rw-r--r--org-zettelkasten.el6
2 files changed, 12 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 04379b6..0f18ee1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2022 Yann Herklotz <git@ymhg.org>
+
+ * unreleased:
+
+ (org): Add modified date which can be added on a before-save-hook.
+
2022-05-03 Yann Herklotz <git@ymhg.org>
* v0.5.0: Add date stamps to org-zettelkasten entries.
diff --git a/org-zettelkasten.el b/org-zettelkasten.el
index a5c364c..6b39342 100644
--- a/org-zettelkasten.el
+++ b/org-zettelkasten.el
@@ -113,6 +113,12 @@ NEWHEADING: function used to create the heading and set the current
(org-zettelkasten-create-next)
(org-zettelkasten-create-branch))))
+(defun org-zettelkasten-update-modified ()
+ "Update the modified timestamp, which can be done on save."
+ (interactive)
+ (org-set-property "modified" (format-time-string
+ (org-time-stamp-format t t))))
+
(defvar org-zettelkasten-mode-map
(let ((map (make-sparse-keymap)))
(define-key map "n" #'org-zettelkasten-create-dwim)