六一的部落格


关关难过关关过,前路漫漫亦灿灿。



默认只有TODO和DONE

org-mode TODO

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 才能生效

stackexchange - org-todo-keywords


org-mode添加任务状态


默认只有TODO和DONE

org-mode TODO

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 才能生效

stackexchange - org-todo-keywords