Kimi
Kimi

Reputation: 341

Add "TODO" when I scheduled a stuck item

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

Answers (1)

juanleon
juanleon

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

Related Questions