From 66934f982abc239cdd6e96ed9919301083441dac Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 28 Oct 2019 12:57:11 -0400 Subject: [PATCH] lang/org: replace DOIN w/ STRT; use 'd' for DONE STRT is more distinct from DONE, and 'd' is a better shortcut for DONE. --- modules/lang/org/config.el | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/lang/org/config.el b/modules/lang/org/config.el index 9b44b3534..887deaa9b 100644 --- a/modules/lang/org/config.el +++ b/modules/lang/org/config.el @@ -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)))