标签: emacs org-mode
emacs如何自动添加" TODO" 当我使用C-c C-s或C-c C-d来安排/截止一个项目时。
感谢。
答案 0 :(得分:1)
这是一种方法:
(defadvice org-schedule (after add-todo activate) (org-todo "TODO")) (defadvice org-deadline (after add-todo activate) (org-todo "TODO"))