Add DOING and DEFERRED workflow states

This commit is contained in:
Camden Dixie O'Brien 2021-01-01 00:00:33 +00:00
parent a7553b72d9
commit 93537fc2b1

View File

@ -233,6 +233,19 @@ needs to be set up to install them if they aren't already.
(auto-mode . emacs))) (auto-mode . emacs)))
#+end_src #+end_src
** Workflow States
I like to have =DOING= 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")))
#+end_src
The ="|"= separates /needs further action/ states (before it) from
/no further action needed/ states (after it).
* Version Control * Version Control
** Git ** Git
=magit= is truly a wonderful creation! Only deviations from defaults =magit= is truly a wonderful creation! Only deviations from defaults