diff options
| author | Franck Cuny <fcuny@twitter.com> | 2019-04-30 08:19:51 -0700 |
|---|---|---|
| committer | Franck Cuny <fcuny@twitter.com> | 2019-04-30 08:19:51 -0700 |
| commit | c2a50369b6221c553bf67e247da1b665b37b770f (patch) | |
| tree | 7275f1ffe971dcc4092c918bc20339728b6bbcf5 | |
| parent | [emacs] Be explicit for new lines in org-mode. (diff) | |
| download | emacs.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.
| -rw-r--r-- | emacs.d/custom/fcuny-org.el | 12 |
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) |
