From a269047a0de8ce7df464ff3dd476ef61a5a81b3c Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sun, 16 May 2021 08:35:04 +0200 Subject: [PATCH] Fix Org capture templates for Read and Response MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Read capture template did not properly ask for the topic and did not have a placement indicator for the cursor, fixed that. The Response capture template now has a “Reply ” action word to indicate the proper action, and also has a placement indicator in it. This way, it should be easier to use these capture templates. --- init.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/init.el b/init.el index 0e70cb9..cf1305f 100644 --- a/init.el +++ b/init.el @@ -1168,15 +1168,15 @@ ("r" "respond" entry (file db/org-default-refile-file) - ,(concat "* TODO [#B] E-Mail: %:subject (%:from) :EMAIL:\n" + ,(concat "* TODO [#B] Reply %:subject (%:from) :EMAIL:\n" ":PROPERTIES:\n:CREATED: %U\n:END:\n" - "\n%a")) + "\n%a\n%?")) ("R" "read" entry (file db/org-default-refile-file) - ,(concat "* READ [#B] %:subject :READ:\n" + ,(concat "* READ [#B] %^{Topic} :READ:\n" ":PROPERTIES:\n:CREATED: %U\n:END:\n" - "\n%a")) + "\n%a\n%?")) ("U" "Read current content of clipboard" entry (file db/org-default-refile-file)