From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matthew Lundin Subject: Re: todo sequence with exceptions Date: Sat, 21 Mar 2009 21:51:16 -0500 Message-ID: References: <938fae2d0903211539p174b3dcdvdb3712896c833f9d@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LlDmX-0001XU-H0 for emacs-orgmode@gnu.org; Sat, 21 Mar 2009 22:51:25 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LlDmS-0001XE-2x for emacs-orgmode@gnu.org; Sat, 21 Mar 2009 22:51:24 -0400 Received: from [199.232.76.173] (port=46321 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LlDmR-0001XB-Ta for emacs-orgmode@gnu.org; Sat, 21 Mar 2009 22:51:19 -0400 Received: from out2.smtp.messagingengine.com ([66.111.4.26]:54731) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LlDmR-0001Xu-Ii for emacs-orgmode@gnu.org; Sat, 21 Mar 2009 22:51:19 -0400 In-Reply-To: <938fae2d0903211539p174b3dcdvdb3712896c833f9d@mail.gmail.com> (Eraldo Helal's message of "Sat\, 21 Mar 2009 23\:39\:40 +0100") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Eraldo Helal Cc: Org-Mode Hi Eraldo, Eraldo Helal writes: > I have the following todo states: > TODO ACTION WAITING DONE and CANCELED > I would like my sequence to be: > TODO > ACTION > WAITING > DONE > and have WAITING and CANCELED extra somehow. > =C2=A0so that I enter=C2=A0 WAITING and CANCELED with a prefix or so. > is there a way to get that with the standard featues? > (without lisp programming) I believe the following will do what you're looking for. --8<---------------cut here---------------start------------->8--- (setq org-use-fast-todo-selection t) (setq org-todo-keywords '((sequence "TODO(t)" "ACTION(a)" "|" "DONE(d)") (sequence "WAITING(w)" "|" "CANCELED(c)"))) --8<---------------cut here---------------end--------------->8--- There's a short FAQ on fast todo selection: http://orgmode.org/worg/org-faq.php#select-TODO-keywords-with-tag-like-inte= rface Regards, Matt