Reputation: 341
How can emacs automatically add "TODO" when I use C-c C-s or C-c C-d to schedule/deadline one Item.
Thanks.
Upvotes: 0
Views: 79
Reputation: 9380
Here is a way to do that:
(defadvice org-schedule (after add-todo activate)
(org-todo "TODO"))
(defadvice org-deadline (after add-todo activate)
(org-todo "TODO"))
Upvotes: 1