Browse Source

added capture for op-verwaltung, set exclusion for node completion

master
Marc Pohling 2 weeks ago
parent
commit
b128078e2f
1 changed files with 9 additions and 7 deletions
  1. 16
      config.org

16
config.org

@ -1215,17 +1215,18 @@ 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+datetree "p:/Eigene Dateien/Notizen/phone_calls.org")
"* [%<%Y-%m-%d %H:%M>] %? :calls:"
"* [%<%Y-%m-%d %H:%M>] %?"
:empty-lines 0
:prepare-finalize (org-id-get-create)
:jump-to-captured t))))
:jump-to-captured t)
("o" "OP-Verwaltung neuer Eintrag"
entry (file+datetree "p:/Eigene Dateien/Notizen/op-verwaltung.org")
"* [%<%Y-%m-%d %H:%M>] %?"
:prepare-finalize (org-id-get-create)
:jump-to-captured t)
)))
(when *sys/linux*
(setq org-capture-templates
;; TODO
@ -1606,6 +1607,7 @@ not sure if actually better
(not
(or (org-node-get-todo node)
(member "calls" (org-node-get-tags node))
(member "op" (org-node-get-tags node))
(assoc "ROAM_EXCLUDE" (org-node-get-properties node))))))
)
#+end_src

Loading…
Cancel
Save