From 591dbceb2b13e7a2168d943bd149596ceb5c3e6b Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Tue, 21 Feb 2023 19:45:55 -0800 Subject: 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 --- emacs/custom/my-org.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit 1.4.1