Last active
February 8, 2018 14:51
-
-
Save jackbaty/2038ceba3c978623c7b000cf5ade213e to your computer and use it in GitHub Desktop.
Mail->TODO Capture Template (Mu4e)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(setq org-capture-templates | |
'(("t" "Todo to Inbox" entry | |
(file+headline "~/Dropbox/org/inbox.org" "Inbox") | |
"* TODO %? \n %i\n") | |
("T" "Add a Tickler" entry | |
(file+headline "~/Dropbox/org/tickler.org" "Tickler") | |
"* %?\n%u") | |
("c" "Todo and Clock In" entry | |
(file+headline "~/Dropbox/org/inbox.org" "Inbox") | |
"* TODO %? \n %i\n" :clock-in t :clock-keep t) | |
("n" "Take a note" entry | |
(file+headline "~/Dropbox/org/notes.org" "Notes") | |
"* %i%? \n %U\n" :empty-lines 1) | |
("w" "Work Timesheet" entry | |
(file+datetree "~/Dropbox/org/timesheet.org") | |
"* %? %^g\n%T") | |
("l" "Current file log entry" entry | |
(file+datetree buffer-file-name) | |
"* %? \n%u") | |
("d" "Daybook" entry | |
(file+datetree+prompt "~/Dropbox/org/daybook.org") | |
"* %?\n\n" :empty-lines 0) | |
("f" "Fusionary Log" entry | |
(file+datetree "~/Dropbox/org/fusionary.org") | |
"* %?\n%u" :empty-lines 0) | |
("b" "Bookmark" entry (file+headline "~/Dropbox/org/notes.org" "Bookmarks") | |
"* %?\n:PROPERTIES:\n:CREATED: %U\n:END:\n\n" :empty-lines 1) | |
("m" "TODO from Mail" entry | |
(file+headline "~/Dropbox/org/inbox.org" "Inbox") | |
"* TODO Followup%? (%:fromname about %:subject) :email: \n%U\n%a\n") | |
)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment