On Sun, Oct 13, 2013 at 03:30:52PM +1100, Chris Henderson wrote:
> I have the following line in my .emacs for tasks which I invoke with C-c
> C-t. How can I add another tag called 'Started' for tasks I already started:
>
> (setq org-todo-keywords
> '((sequence "TODO(t)" "|" "DONE(d)")
> (sequence "|" "CANCELED(c)")))
This should work:
(setq org-todo-keywords
'((sequence "TODO(t)" "Started(s)" "|" "DONE(d)")
(sequence "|" "CANCELED(c)")))
You could also put the cancelled after done in one sequence line, I
think. Not sure what would be the change in behaviour though.
Hope this helps,
--
Suvayu
Open source is the future. It sets us free.