Using org-capture-templates to schedule a TODO for the day after today

后端 未结 3 1906
悲&欢浪女
悲&欢浪女 2021-02-04 04:39

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

3条回答
  •  鱼传尺愫
    2021-02-04 05:21

    This should work for your template string:

    "\n\n** TODO %?\nSCHEDULED: <%(org-read-date nil nil \"+1d\")>"
    

    org-read-date generates a timestamp; +1d means tomorrow.

提交回复
热议问题