From af00c66fb4dda1a98516907f94b5b7ec2218a923 Mon Sep 17 00:00:00 2001 From: Camden Dixie O'Brien Date: Fri, 1 Jan 2021 00:00:35 +0000 Subject: [PATCH] Change org-mode "DOING" keyword to "IN-PROGRESS" It's longer and is more of a pain to type, but for some reason I just like it better. --- config.org | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.org b/config.org index adadd66..76c2b3a 100644 --- a/config.org +++ b/config.org @@ -317,13 +317,13 @@ #+end_src ** Workflow States - I like to have =DOING= and =DEFERRED= as workflow states as well as + I like to have =IN-PROGRESS= and =DEFERRED= as workflow states as well as the standard =TODO= and =DONE=, which can be added by setting [[help:org-todo-keywords][org-todo-keywords]]: #+begin_src emacs-lisp (setq org-todo-keywords - '((sequence "TODO" "DOING" "|" "DONE" "DEFERRED"))) + '((sequence "TODO" "IN-PROGRESS" "|" "DONE" "DEFERRED"))) #+end_src The ="|"= separates /needs further action/ states (before it) from