From c2a50369b6221c553bf67e247da1b665b37b770f Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Tue, 30 Apr 2019 08:19:51 -0700 Subject: [emacs] Fix the todo keywords sequence. First, I made a typo in the name of the variable, which is why the sequencing did not work. Secondly, let's start with something simple instead of multiple sequences. --- emacs.d/custom/fcuny-org.el | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/emacs.d/custom/fcuny-org.el b/emacs.d/custom/fcuny-org.el index cc333d2..ebec3fa 100644 --- a/emacs.d/custom/fcuny-org.el +++ b/emacs.d/custom/fcuny-org.el @@ -36,16 +36,8 @@ ("go" . "http://go/%s"))) ;; The sequence I want to use to navigate tasks - (org-todo-keywoards - '((sequence "TODO(t)" "NEXT(n)" "STARTED(s)" "|" "DONE(d!)" "CANCELED(c@/!)") - (sequence "WAITING(w@/!)" "SOMEDAY(s)" "|" "CANCELED(c@/!)") - (sequence "IDEA(i)" "|" "CANCELED(c@/!)"))) - (org-todo-state-tags-triggers '(("CANCELLED" ("CANCELED" . t)) - ("WAITING" ("WAITING" . t)) - (done ("WAITING")) - ("TODO" ("WAITING") ("CANCELED")) - ("NEXT" ("WAITING") ("CANCELED")) - ("DONE" ("WAITING") ("CANCELED")))) + (org-todo-keywords + '((sequence "TODO(t)" "NEXT(n)" "STARTED(s)" "|" "DONE(d)" "CANCELED(c)"))) (org-enforce-todo-dependencies t) -- cgit 1.4.1