From 647d31dc7d2b54c577b1406af8fb111970f06206 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Tue, 4 Aug 2015 12:58:51 -0700 Subject: [PATCH] Add NEXT and HANDLED states. --- dotfiles/emacs.d/init.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dotfiles/emacs.d/init.el b/dotfiles/emacs.d/init.el index 65cb414e..9050a3c8 100644 --- a/dotfiles/emacs.d/init.el +++ b/dotfiles/emacs.d/init.el @@ -1006,8 +1006,8 @@ the same tree node, and the headline of the tree node in the Org-mode file." ;; Record changes to todo states (setq org-log-into-drawer t) (setq org-todo-keywords - '((sequence "TODO(t!)" "STARTED(s!)" "WAIT(w!)" "BACKLOG(b!)" "|" - "DONE(d!)" "CANCELED(c!)" "OBVIATED(o!)" "HANDLED(o!)"))) + '((sequence "TODO(t!)" "NEXT(n!)" "STARTED(s!)" "WAIT(w!)" "BACKLOG(b!)" "|" + "DONE(d!)" "CANCELED(c!)" "OBVIATED(o!)" "HANDLED(h!)" "EXPIRED(e!)"))) ;; Stop starting agenda from deleting frame setup! (setq org-agenda-window-setup 'other-window) (define-key mode-specific-map [?a] 'org-agenda)