From 2a7fdf969a345f3b844f9c4e32df11c46141b769 Mon Sep 17 00:00:00 2001 From: Marc Date: Thu, 10 Apr 2025 09:10:45 +0200 Subject: [PATCH] edited capture templates --- config.org | 39 ++++++++++++++++++++++++++++++++++----- 1 file changed, 34 insertions(+), 5 deletions(-) diff --git a/config.org b/config.org index e5dff4b..4c2bc58 100644 --- a/config.org +++ b/config.org @@ -1232,12 +1232,41 @@ nil))) (setq org-todo-keywords '((sequence "WAIT" "OPEN" "NEXT" "TODO" "|" "DONE" "DROP"))) (setq org-capture-templates - '(("t" "telephone call" entry -; (file+olp+datetree (concat MY--PATH_ORG_FILES "phone_calls.org")) - (file+datetree "p:/Eigene Dateien/Notizen/phone_calls.org") - "* [%<%Y-%m-%d %H:%M>] %?" - :empty-lines 0 :jump-to-captured t)))) +; '(("t" "telephone call" entry +;; (file+olp+datetree (concat MY--PATH_ORG_FILES "phone_calls.org")) +; (file+datetree "p:/Eigene Dateien/Notizen/phone_calls.org") +; "* [%<%Y-%m-%d %H:%M>] %?" +; :empty-lines 0 :jump-to-captured t)))) + '(("t" "telephone call" + entry (file+datetree "p:/Eigene Dateien/Notizen/phone_calls.org") + "* [%<%Y-%m-%d %H:%M>] %? :calls:" + :empty-lines 0 + :prepare-finalize (org-id-get-create) + :jump-to-captured t)))) (when *sys/linux* + (setq org-capture-templates + ;; TODO + ;; entry for a journal? + ;; entry for a project incl. layout + ;; entry for a todo in a todo file + ;; add an entry to a new or existing node + ;; which is not in the org-node exclusion list + '(("i" "capture into ID node" + entry (function org-node-capture-target) nil + :jump-to-captured t + :empty-lines-after 1) + ;; jump to an existing org-node + ("j" "Jumo to ID node" + plain (function org-node-capture-target) nil + :jump-to-captured t + :immediate-finish t) + ("p" "phone call" + entry (file+datetree "~/archiv/Organisieren/phonecalls.org") + "* [%<%Y-%m-%d %H:%M>] %? :calls:" + :empty-lines 0 + :prepare-finalize (org-id-get-create) + :jump-to-captured t) + )) (setq org-pretty-entities t)) :custom (org-startup-truncated t)