Commit 9399cba4e382

Vincent Demeester <vincent@sbr.pm>
2024-09-02 04:51:28
tools/emacs: add a capture templates for journal
Allow to capture things in today's journal entry. I'll need to verify if it works when I did not create the file but… Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent cb9a376
Changed files (1)
tools
emacs
tools/emacs/config/config-org.el
@@ -273,6 +273,11 @@ file which do not already have one."
                  (file ,org-inbox-file)
                  "* %a\n%U\n%?\n%i"
                  :empty-lines 1))
+  (add-to-list 'org-capture-templates
+	       `("d" "daily entry" entry
+		 (file ,(car (denote-journal-extras--entry-today)))
+                 "* %a\n%U\n%?\n%i"
+                 :empty-lines 1))
   (add-to-list 'org-capture-templates
                `("t" "Tasks"))
   (add-to-list 'org-capture-templates