summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-07-02 14:22:09 -0700
committerFranck Cuny <franck@fcuny.net>2022-07-02 14:39:59 -0700
commitb701b2e06bec36e035546300ba9b6cc8223efdae (patch)
treebff13a85a1a9161922720bf20de282e52dd2c534
parentfeat(org): add a capture template for tasks related to mail (diff)
downloademacs.d-b701b2e06bec36e035546300ba9b6cc8223efdae.tar.gz
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 <franck@fcuny.net>
-rw-r--r--emacs/custom/my-org.el8
1 files 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)))