Browse Source

edited capture templates

master
Marc 1 week ago
parent
commit
2a7fdf969a
1 changed files with 34 additions and 5 deletions
  1. 39
      config.org

39
config.org

@ -1232,12 +1232,41 @@ nil)))
(setq org-todo-keywords (setq org-todo-keywords
'((sequence "WAIT" "OPEN" "NEXT" "TODO" "|" "DONE" "DROP"))) '((sequence "WAIT" "OPEN" "NEXT" "TODO" "|" "DONE" "DROP")))
(setq org-capture-templates (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* (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)) (setq org-pretty-entities t))
:custom :custom
(org-startup-truncated t) (org-startup-truncated t)

Loading…
Cancel
Save