commit 8b9f4efff06ceb555cc81823871b1f6592626bbb parent 4532a6314ad15632e79acff10d24c4a83b565aed Author: Alex Balgavy <alex@balgavy.eu> Date: Fri, 14 Jan 2022 18:00:37 +0100 emacs: improve org capture templates Diffstat:
M | emacs/config.org | | | 9 | +++++---- |
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/emacs/config.org b/emacs/config.org @@ -838,11 +838,12 @@ Templates for quick capture: #+begin_src emacs-lisp (setq org-capture-templates `(("t" "Todo [inbox]" entry - (file+headline ,org-life-inbox "Tasks") + (file ,org-life-inbox) "* TODO %i%?") - ("T" "Tickler" entry - (file+headline ,org-life-tickler "Tickler") - "* %i%? \n %U"))) + + ("s" "Save for read/watch/listen" entry + (file ,org-life-inbox) + "* TODO %?[[%^{link}][%^{description}]] %^G"))) #+end_src *** Todo & agenda views