diff options
author | Franck Cuny <franck@fcuny.net> | 2023-02-21 19:45:55 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2023-02-21 19:45:55 -0800 |
commit | 591dbceb2b13e7a2168d943bd149596ceb5c3e6b (patch) | |
tree | a186ec227e2bb783bea98a531485d31901027270 | |
parent | fix(org): typo in a header (diff) | |
download | emacs.d-591dbceb2b13e7a2168d943bd149596ceb5c3e6b.tar.gz |
ref(org): simplify the sequence for todo-keywords
I don't need the "STARTED" state, it's either "TODO" or "WAITING" (it contains both the idea of started or blocked). Change-Id: I1f5410382f152c8ad2adfe9cd0bc08d66d55483e
-rw-r--r-- | emacs/custom/my-org.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/custom/my-org.el b/emacs/custom/my-org.el index 73b4863..85716d3 100644 --- a/emacs/custom/my-org.el +++ b/emacs/custom/my-org.el @@ -36,7 +36,7 @@ (setq org-log-into-drawer t) ;; insert state change in the drawer (setq org-cycle-separator-lines 0) (setq org-startup-folded 'content) -(setq org-todo-keywords '((sequence "TODO" "STARTED" "WAITING" "|" "DONE" "CANCELED"))) +(setq org-todo-keywords '((sequence "TODO" "WAITING" "|" "DONE" "CANCELED"))) (setq org-priority-start-cycle-with-default nil) ;; Start one over/under default value. (setq org-highest-priority ?A) |