diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2022-11-20 19:07:59 +0000 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2022-11-20 19:07:59 +0000 |
commit | ac5580082d352b449767a432e44799d86a090d2f (patch) | |
tree | 887198db399bb18a725417e9804dc0cb0dbf79ce /init.el | |
parent | fddc136a1366ce00b5df88e44d75361d4bf79922 (diff) |
added DEFERRED todo keyword
Diffstat (limited to '')
-rw-r--r-- | init.el | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -800,7 +800,8 @@ If failed try to complete the common part with `company-complete-common'" '("+LEVEL=2/+PROJECT" ("NEXT" "DOING") nil "")) (setq org-todo-keywords - (quote ((sequence "TODO(t)" "NEXT(n)" "DOING(D)" "PROJECT(p)" "|" "DONE(d!)") + (quote ((sequence "TODO(t)" "|" "DEFERRED(r@/!)") + (sequence "TODO(t)" "NEXT(n)" "DOING(D)" "PROJECT(p)" "|" "DONE(d!)") (sequence "WAITING(w@/!)" "SOMEDAY(s@/!)" "HOLD(h@/!)" "|" "CANCELLED(c@/!)")))) |