Add HOLD org todo keyword

WAIT = for tasks waiting on other people or external forces
HOLD = for tasks waiting on you
This commit is contained in:
Henrik Lissner 2020-04-17 14:49:58 -04:00
parent 789b1dc1ab
commit 2a8926ec33
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -141,9 +141,10 @@ This forces it to read the background before rendering."
(setq org-todo-keywords
'((sequence
"TODO(t)" ; A task that needs doing & is ready to do
"PROJ(p)" ; An ongoing project that cannot be completed in one step
"PROJ(p)" ; A project, which usually contains other tasks
"STRT(s)" ; A task that is in progress
"WAIT(w)" ; Something is holding up this task; or it is paused
"WAIT(w)" ; Something external is holding up this task
"HOLD(h)" ; This task is paused/on hold because of me
"|"
"DONE(d)" ; Task successfully completed
"KILL(k)") ; Task was cancelled, aborted or is no longer applicable
@ -158,6 +159,7 @@ This forces it to read the background before rendering."
("STRT" . +org-todo-active)
("[?]" . +org-todo-onhold)
("WAIT" . +org-todo-onhold)
("HOLD" . +org-todo-onhold)
("PROJ" . +org-todo-project)))
(defadvice! +org-display-link-in-eldoc-a (orig-fn &rest args)