Using org-capture-templates to schedule a TODO for the day after today
问题 In org-mode, I know how to create a todo and use the timestamp so that it is scheduled for today. How do I schedule it for tomorrow? Unfortunately I don't know Elisp and don't have time right now to learn it. Here is my .emacs file: (setq org-capture-templates '(("t" "Agenda Todo" entry (file+headline "c:/Org/agenda.org" "Agenda") "\n\n** TODO %?\nSCHEDULED: <%<%Y-%m-%d %a>>" :empty-lines 1) I would need to replace the %m-%d %a with a value incremented by one day. 回答1: Working off Juancho's