diff --git a/config.org b/config.org index 06af4f8..6bc41cf 100644 --- a/config.org +++ b/config.org @@ -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