diff options
author | fpi | 2020-09-18 15:49:14 +0200 |
---|---|---|
committer | fpi | 2020-09-18 15:57:27 +0200 |
commit | 71b8eb226d6eea7226cfbb7ceb760f5a2ffc8e5a (patch) | |
tree | 5886fd19c105a4e067e820a163547df671d629d1 | |
parent | Slim down time budgets as it was too slow (diff) |
Add org-protocol capture templates
-rw-r--r-- | emacs-init.org | 17 |
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 |