From 58e713dabe3bcccfcbd89a727ae73d1cf5ee2151 Mon Sep 17 00:00:00 2001 From: Camden Dixie O'Brien Date: Fri, 1 Jan 2021 00:00:35 +0000 Subject: [PATCH] Tweak org workflow state config --- config.org | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) 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