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:
parent
d347574d30
commit
66934f982a
1 changed files with 5 additions and 5 deletions
|
@ -139,20 +139,20 @@ background (and foreground) match the current theme."
|
||||||
'((sequence
|
'((sequence
|
||||||
"TODO(t)" ; A task that needs doing & is ready to do
|
"TODO(t)" ; A task that needs doing & is ready to do
|
||||||
"PROJ(p)" ; An ongoing project that cannot be completed in one step
|
"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
|
"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
|
"KILL(k)") ; Task was cancelled, aborted or is no longer applicable
|
||||||
(sequence
|
(sequence
|
||||||
"[ ](T)" ; A task that needs doing
|
"[ ](T)" ; A task that needs doing
|
||||||
"[-](D)" ; Task is in progress
|
"[-](S)" ; Task is in progress
|
||||||
"[?](W)" ; Task is being held up or paused
|
"[?](W)" ; Task is being held up or paused
|
||||||
"|"
|
"|"
|
||||||
"[X](X)")) ; Task was completed
|
"[X](D)")) ; Task was completed
|
||||||
org-todo-keyword-faces
|
org-todo-keyword-faces
|
||||||
'(("[-]" . +org-todo-active)
|
'(("[-]" . +org-todo-active)
|
||||||
("DOIN" . +org-todo-active)
|
("STRT" . +org-todo-active)
|
||||||
("[?]" . +org-todo-onhold)
|
("[?]" . +org-todo-onhold)
|
||||||
("WAIT" . +org-todo-onhold)
|
("WAIT" . +org-todo-onhold)
|
||||||
("PROJ" . +org-todo-project)))
|
("PROJ" . +org-todo-project)))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue