Update Org keywords

This commit is contained in:
Antoine Martin 2020-05-23 13:02:17 +02:00
parent e6606d277c
commit ea0db40573

View file

@ -147,9 +147,8 @@ Here are the [[https://orgmode.org/manual/TODO-Extensions.html#TODO-Extensions][
some automatic [[https://orgmode.org/manual/Tracking-TODO-state-changes.html#Tracking-TODO-state-changes][state changes]]. some automatic [[https://orgmode.org/manual/Tracking-TODO-state-changes.html#Tracking-TODO-state-changes][state changes]].
| keyword | meaning | | keyword | meaning |
|-------------+--------------------------------------------------------------------------| |-------------+----------------------------------------------------------|
| =TODO= | Self explanatory | | =TODO= | Self explanatory |
| =WAITING= | I'm probably waiting on someone to do something before I can act on this |
| =DONE= | This task is finished, no longer displayed in the agenda | | =DONE= | This task is finished, no longer displayed in the agenda |
| =CANCELLED= | This task isn't finished but is no longer relevant | | =CANCELLED= | This task isn't finished but is no longer relevant |
@ -158,14 +157,11 @@ some automatic [[https://orgmode.org/manual/Tracking-TODO-state-changes.html#Tra
(setq org-todo-keywords (setq org-todo-keywords
'((sequence '((sequence
"TODO(t)" "TODO(t)"
"WAITING(w@/!)"
"|" "|"
"DONE(d!)" "DONE(d!)"
"CANCELLED(c@/!)") "CANCELLED(c@/!)")
(sequence (sequence
"[ ](T)" "[ ](T)"
"[-](S)"
"[?](W)"
"|" "|"
"[X](D)")))) "[X](D)"))))
#+END_SRC #+END_SRC