summary refs log tree commit diff
path: root/emacs.d/custom
diff options
context:
space:
mode:
authorFranck Cuny <fcuny@twitter.com>2019-04-30 08:19:51 -0700
committerFranck Cuny <fcuny@twitter.com>2019-04-30 08:19:51 -0700
commitc2a50369b6221c553bf67e247da1b665b37b770f (patch)
tree7275f1ffe971dcc4092c918bc20339728b6bbcf5 /emacs.d/custom
parent[emacs] Be explicit for new lines in org-mode. (diff)
downloademacs.d-c2a50369b6221c553bf67e247da1b665b37b770f.tar.gz
[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.
Diffstat (limited to '')
-rw-r--r--emacs.d/custom/fcuny-org.el12
1 files 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)