From b701b2e06bec36e035546300ba9b6cc8223efdae Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sat, 2 Jul 2022 14:22:09 -0700 Subject: ref(org): lower case for template menu Change-Id: I557fc12c1d00af891ec1607b4b921d3f38051016 Reviewed-on: https://cl.fcuny.net/c/emacs.d/+/606 Tested-by: CI Reviewed-by: Franck Cuny --- emacs/custom/my-org.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/emacs/custom/my-org.el b/emacs/custom/my-org.el index 55cf707..4017483 100644 --- a/emacs/custom/my-org.el +++ b/emacs/custom/my-org.el @@ -104,13 +104,13 @@ (format "* TODO [#B] %s %s %%?\n:PROPERTIES:\n:CREATED: %%U\n:END:\n" from subject))) (setq org-capture-templates -`(("t" "Todo" entry (file "inbox.org") +`(("t" "tasks" entry (file "inbox.org") "* TODO [#D] %?\n:PROPERTIES:\n:CREATED: %U\n:END:\n") - ("n" "Note" entry (file "notes.org") + ("n" "note" entry (file "notes.org") "* %?\n:PROPERTIES:\n:CREATED: %T\n:END:\n") - ("f" "elfeed" entry (file "inbox.org") + ("f" "feed" entry (file "inbox.org") ,(concat "* TODO %:elfeed-entry-title\n" ":PROPERTIES:\n:CREATED: %T\n:END:\n" "%a\n")) @@ -118,7 +118,7 @@ ("m" "mail" entry (file "inbox.org") (function my/mail-todo-format-string)) - ("j" "Journal" entry + ("j" "journal" entry (file+olp+datetree "journal.org") "* %?\n:PROPERTIES:\n:CREATED: %T\n:END:\n" :tree-type day))) -- cgit 1.4.1