Browse Source

changes to capture templates

master
Marc 2 weeks ago
parent
commit
70e007143a
1 changed files with 14 additions and 2 deletions
  1. 16
      config.org

16
config.org

@ -1274,15 +1274,27 @@ nil)))
;; entry for a todo in a todo file ;; entry for a todo in a todo file
;; add an entry to a new or existing node ;; add an entry to a new or existing node
;; which is not in the org-node exclusion list ;; which is not in the org-node exclusion list
'(("i" "capture into ID node"
'(("i" "capture into node"
entry (function org-node-capture-target) nil entry (function org-node-capture-target) nil
:jump-to-captured t :jump-to-captured t
:empty-lines-after 1) :empty-lines-after 1)
;; jump to an existing org-node ;; jump to an existing org-node
("j" "Jumo to ID node"
("j" "jumo to node"
plain (function org-node-capture-target) nil plain (function org-node-capture-target) nil
:jump-to-captured t :jump-to-captured t
:immediate-finish t) :immediate-finish t)
("t" "simple task"
entry (file "~/archiv/notes/tasks.org")
"* TODO %?\n :PROPERTIES:\n :CREATED: %U\n :END:\n"
:prepend t
:prepare-finalize (org-id-get-create)
:jump-to-captured t)
("n" "simple note"
entry (file "~/archiv/notes/notes.org")
"* %?\n :PROPERTIES:\n :CREATED: %U\n :END:\n"
:prepend t
:prepare-finalize (org-id-get-create)
:jump-to-captured t)
("p" "phone call" ("p" "phone call"
entry (file+olp+datetree "~/archiv/notes/phonecalls.org") entry (file+olp+datetree "~/archiv/notes/phonecalls.org")
"* call [%<%Y-%m-%d %H:%M>] %?" "* call [%<%Y-%m-%d %H:%M>] %?"

Loading…
Cancel
Save