org-mode添加任务状态
2024年7月8日 2024年7月22日
默认只有TODO和DONE
1;; #+SEQ_TODO: TODO DOING | DONE ABORT
1(setq org-todo-keywords 2 '((sequence "TODO" "ONGOING" "BLOCKED" "|" "DONE" "ABORT" "CANCELED") 3 (sequence "NOTSTART" "QUEUED" "FINISHED")) 4 ) 5 6(setq org-todo-keyword-faces '(("NOTSTART" . "red")("QUEUED" . "green")("FINISHED" . "blue")))
需 revert-buffer
才能生效