[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Two sets of todo sequences
From: |
Stefan Kangas |
Subject: |
Re: Two sets of todo sequences |
Date: |
Tue, 17 Nov 2020 05:26:51 -0800 |
Christopher Dimech <dimech@gmx.com> writes:
> I want to have two sets of todo sequences
>
> "TODO" "STARTED" "WAITING" "FINALISE" "DONE"
>
> and
>
> "CRITICAL" "CR-STARTED" "CR-WAITING" "CR-FINALISE" "CR-DONE"
>
> When I use the following construct, the item is only checked as done
> when I reach CR-DONE only. The cookies are also not updated ([/], [%])
>
> (setq org-todo-keywords
> '("TODO" "STARTED" "WAITING" "FINALISE" "DONE"
> "CRITICAL" "CR-STARTED" "CR-WAITING" "CR-FINALISE" "CR-DONE"))
Does this work better? Otherwise, see the help for `org-todo-keywords'.
(setq org-todo-keywords
'((sequence "TODO" "STARTED" "WAITING" "FINALISE" "|" "DONE")
(sequence "CRITICAL" "CR-STARTED" "CR-WAITING" "CR-FINALISE"
"|" "CR-DONE")))