diff options
| author | Raul Benencia <id@rbenencia.name> | 2022-07-31 08:46:16 -0700 | 
|---|---|---|
| committer | Raul Benencia <id@rbenencia.name> | 2022-07-31 08:46:16 -0700 | 
| commit | 3db561fba59b5859bf4af5cab2ff90b57139b3d8 (patch) | |
| tree | bf2f81a032b43680768b4684b3ec37b2c4c0c496 /.emacs.local.d/modes | |
| parent | ac35da5b84cb89fe0fd7af1f5b4ef2f1754318f7 (diff) | |
emacs: fix email capture template
Diffstat (limited to '.emacs.local.d/modes')
| -rw-r--r-- | .emacs.local.d/modes/org.el | 7 | 
1 files changed, 5 insertions, 2 deletions
| diff --git a/.emacs.local.d/modes/org.el b/.emacs.local.d/modes/org.el index ee9a934..d504491 100644 --- a/.emacs.local.d/modes/org.el +++ b/.emacs.local.d/modes/org.el @@ -66,8 +66,11 @@          ("w" "Todo" entry (file+headline my-org-refile-path "Tasks")           "* TODO "           :empty-lines 1) -        ("m" "Mail" entry (file+headline my-org-refile-path "Incoming") -         "* TODO %^{Title}\n\n  Source: %u, %c\n\n  %i" +        ("m" +         "Capture incoming email" +         entry +         (file+headline my-org-refile-path "Incoming") +         "* TODO Re: %:description\n\n  Source: %u, %a\n"           :empty-lines 1)          ))) | 
