Tweak org workflow state config
This commit is contained in:
parent
2d0513a168
commit
58e713dabe
13
config.org
13
config.org
@ -317,18 +317,25 @@
|
|||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
** Workflow States
|
** Workflow States
|
||||||
I like to have =IN-PROGRESS= and =DEFERRED= as workflow states as well as
|
I like to have =IN-PROGRESS= and =CANCELLED= workflow states as
|
||||||
the standard =TODO= and =DONE=, which can be added by setting
|
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]]:
|
[[help:org-todo-keywords][org-todo-keywords]]:
|
||||||
|
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(setq org-todo-keywords
|
(setq org-todo-keywords
|
||||||
'((sequence "TODO" "IN-PROGRESS" "|" "DONE" "DEFERRED")))
|
'((sequence "TODO" "IN-PROGRESS" "|" "DONE" "CANCELLED(@)")))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
The ="|"= separates /needs further action/ states (before it) from
|
The ="|"= separates /needs further action/ states (before it) from
|
||||||
/no further action needed/ states (after it).
|
/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
|
** Agenda
|
||||||
Time to try org-mode's agenda feature again I think. Last time I
|
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
|
didn't end up using it much, but I am /much/ more of an Emacs
|
||||||
|
Loading…
x
Reference in New Issue
Block a user