From 84a6c6faa41e8edf194500323f131c6c34564c9a Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Fri, 23 Nov 2018 15:42:26 +0100 Subject: [PATCH] Add capture templates for adding notes to the current task --- configuration.org | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/configuration.org b/configuration.org index 09a249d..519c24e 100644 --- a/configuration.org +++ b/configuration.org @@ -2620,6 +2620,23 @@ This is a big one; I use a lot of customisation here. '("g" "GT2 note" entry (file+headline (lambda () (concat org-directory "gt2-notes.org")) "Captures") "** %^{Title}\n :PROPERTIES:\n :on: %T\n :END:\n %i%?")) + (add-to-list 'org-capture-templates + '("c" "Item to current Clocked Task" item + (clock) + "%i%?" + :empty-lines 1)) + (add-to-list 'org-capture-templates + '("K" "Kill-ring to Current Clocked Task" plain + (clock) + "%c" + :immediate-finish t + :empty-lines 1)) + (add-to-list 'org-capture-templates + '("R" "Region to Current Clocked Task" plain + (clock) + "%i" + :immediate-finish t + :empty-lines 1)) :hook (ediff-select . f-ediff-org-unfold-tree-element) (ediff-unselect . f-ediff-org-fold-tree)