lang/org: replace DOIN w/ STRT; use 'd' for DONE

STRT is more distinct from DONE, and 'd' is a better shortcut for DONE.
This commit is contained in:
Henrik Lissner 2019-10-28 12:57:11 -04:00
parent d347574d30
commit 66934f982a
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -139,20 +139,20 @@ background (and foreground) match the current theme."
'((sequence
"TODO(t)" ; A task that needs doing & is ready to do
"PROJ(p)" ; An ongoing project that cannot be completed in one step
"DOIN(d)" ; A task that is in progress
"STRT(d)" ; A task that is in progress
"WAIT(w)" ; Something is holding up this task; or it is paused
"|"
"DONE(x)" ; Task successfully completed
"DONE(d)" ; Task successfully completed
"KILL(k)") ; Task was cancelled, aborted or is no longer applicable
(sequence
"[ ](T)" ; A task that needs doing
"[-](D)" ; Task is in progress
"[-](S)" ; Task is in progress
"[?](W)" ; Task is being held up or paused
"|"
"[X](X)")) ; Task was completed
"[X](D)")) ; Task was completed
org-todo-keyword-faces
'(("[-]" . +org-todo-active)
("DOIN" . +org-todo-active)
("STRT" . +org-todo-active)
("[?]" . +org-todo-onhold)
("WAIT" . +org-todo-onhold)
("PROJ" . +org-todo-project)))