Tweak org workflow state config

This commit is contained in:
Camden Dixie O'Brien 2021-01-01 00:00:35 +00:00
parent 2d0513a168
commit 58e713dabe

View File

@ -317,18 +317,25 @@
#+end_src
** Workflow States
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
I like to have =IN-PROGRESS= and =CANCELLED= workflow states as
well as the standard =TODO= and =DONE=. Cancelled items also want a
note attached explaining why. All this can be added by setting
[[help:org-todo-keywords][org-todo-keywords]]:
#+begin_src emacs-lisp
(setq org-todo-keywords
'((sequence "TODO" "IN-PROGRESS" "|" "DONE" "DEFERRED")))
'((sequence "TODO" "IN-PROGRESS" "|" "DONE" "CANCELLED(@)")))
#+end_src
The ="|"= separates /needs further action/ states (before it) from
/no further action needed/ states (after it).
I also want to log the date and time when a note is marked as done:
#+begin_src emacs-lisp
(setq org-log-done 'time)
#+end_src
** Agenda
Time to try org-mode's agenda feature again I think. Last time I
didn't end up using it much, but I am /much/ more of an Emacs