Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我使用 Cc Cs 或 Cc Cd 来安排/截止一个项目时,emacs 如何自动添加“TODO”。
谢谢。
这是一种方法:
(defadvice org-schedule (after add-todo activate) (org-todo "TODO")) (defadvice org-deadline (after add-todo activate) (org-todo "TODO"))