From 0afe7b59300233e730704cd6102a5d82c312b9e6 Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcuskammer@user.noreply.gitlab.com> Date: Mon, 23 Nov 2020 21:51:13 +0100 Subject: [PATCH] Specify org files for custom templates --- bundle/bundle--package.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bundle/bundle--package.el b/bundle/bundle--package.el index ee76bfe5..d6110d72 100644 --- a/bundle/bundle--package.el +++ b/bundle/bundle--package.el @@ -123,15 +123,15 @@ There are two things you can do about this warning: org-use-property-inheritance nil org-export-with-sub-superscripts nil org-capture-templates (quote - (("t" "Task" entry (file+headline "" "Tasks") + (("t" "Task" entry (file+headline "tasks.org" "Tasks") "* OPEN %?\n\s %u\n\s %a") - ("j" "Journal" entry (file+headline "" "Journal") + ("j" "Journal" entry (file+headline "journal.org" "Journal") "* %<%Y-%m-%d %H:%M:%S %p %Z>\n\s %?") ("a" "Appointment today" - entry (file+headline "" "Appointments") + entry (file+headline "appointments.org" "Appointments") "* %?\n\s %T\n") ("A" "Appointment" - entry (file+headline "" "Appointments") + entry (file+headline "appointments.org" "Appointments") "* %?\n\s %u\n\s")))))