Update Org keywords
This commit is contained in:
parent
e6606d277c
commit
ea0db40573
14
config.org
14
config.org
|
@ -146,26 +146,22 @@ Fancier ellipsis indicator:
|
||||||
Here are the [[https://orgmode.org/manual/TODO-Extensions.html#TODO-Extensions][keywords]] I'm using to track task progress. I'm also making use of
|
Here are the [[https://orgmode.org/manual/TODO-Extensions.html#TODO-Extensions][keywords]] I'm using to track task progress. I'm also making use of
|
||||||
some automatic [[https://orgmode.org/manual/Tracking-TODO-state-changes.html#Tracking-TODO-state-changes][state changes]].
|
some automatic [[https://orgmode.org/manual/Tracking-TODO-state-changes.html#Tracking-TODO-state-changes][state changes]].
|
||||||
|
|
||||||
| keyword | meaning |
|
| keyword | meaning |
|
||||||
|-------------+--------------------------------------------------------------------------|
|
|-------------+----------------------------------------------------------|
|
||||||
| =TODO= | Self explanatory |
|
| =TODO= | Self explanatory |
|
||||||
| =WAITING= | I'm probably waiting on someone to do something before I can act on this |
|
| =DONE= | This task is finished, no longer displayed in the agenda |
|
||||||
| =DONE= | This task is finished, no longer displayed in the agenda |
|
| =CANCELLED= | This task isn't finished but is no longer relevant |
|
||||||
| =CANCELLED= | This task isn't finished but is no longer relevant |
|
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(after! org
|
(after! org
|
||||||
(setq org-todo-keywords
|
(setq org-todo-keywords
|
||||||
'((sequence
|
'((sequence
|
||||||
"TODO(t)"
|
"TODO(t)"
|
||||||
"WAITING(w@/!)"
|
|
||||||
"|"
|
"|"
|
||||||
"DONE(d!)"
|
"DONE(d!)"
|
||||||
"CANCELLED(c@/!)")
|
"CANCELLED(c@/!)")
|
||||||
(sequence
|
(sequence
|
||||||
"[ ](T)"
|
"[ ](T)"
|
||||||
"[-](S)"
|
|
||||||
"[?](W)"
|
|
||||||
"|"
|
"|"
|
||||||
"[X](D)"))))
|
"[X](D)"))))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
Loading…
Reference in a new issue