summaryrefslogtreecommitdiff
path: root/emacs-init.org
diff options
context:
space:
mode:
authorfpi2020-09-18 15:49:14 +0200
committerfpi2020-09-18 15:57:27 +0200
commit71b8eb226d6eea7226cfbb7ceb760f5a2ffc8e5a (patch)
tree5886fd19c105a4e067e820a163547df671d629d1 /emacs-init.org
parentSlim down time budgets as it was too slow (diff)
Add org-protocol capture templates
Diffstat (limited to 'emacs-init.org')
-rw-r--r--emacs-init.org17
1 files changed, 16 insertions, 1 deletions
diff --git a/emacs-init.org b/emacs-init.org
index 9f7705b..4b15bd1 100644
--- a/emacs-init.org
+++ b/emacs-init.org
@@ -4016,7 +4016,7 @@ Instead of project related capture templates, I use the same template for all ta
#+END_SRC
***** Plans & Ideas
#+BEGIN_SRC emacs-lisp :tangle no :noweb-ref org-capture-templates
-("p" "Plans/Ideas"
+("P" "Plans/Ideas"
entry
(file "~/sync/refile.org")
"*** PLANNING %?
@@ -4069,6 +4069,21 @@ Instead of project related capture templates, I use the same template for all ta
:empty-lines 1
:immediate-finish t)
#+END_SRC
+***** org-protocol
+#+begin_src emacs-lisp :tangle no :noweb-ref org-capture-templates
+ ("p" "Protocol" entry (file+olp+datetree ,org-journal-file)
+ "* %^{Title}
+:PROPERTIES:
+:SOURCE: %c
+:CREATED: %U
+:END:
+#+BEGIN_QUOTE\n%i\n#+END_QUOTE\n\n\n%?")
+("L" "Protocol Link" entry (file+olp+datetree ,org-journal-file)
+ "* %? [[%:link][%:description]]
+:PROPERTIES:
+:CREATED: %U
+:END:")
+#+end_src
***** Old templates
Templates I no longer use, but may be interesting.
#+BEGIN_SRC emacs-lisp :tangle no