From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: Eliminate DONE state? Date: Fri, 18 Sep 2009 15:53:52 +0100 Message-ID: <684B98BC-EF0C-4E28-8625-F0915BCD6985@gmail.com> References: Mime-Version: 1.0 (Apple Message framework v936) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Moeqb-0003cJ-Fl for emacs-orgmode@gnu.org; Fri, 18 Sep 2009 10:54:05 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MoeqU-0003T0-Ot for emacs-orgmode@gnu.org; Fri, 18 Sep 2009 10:54:03 -0400 Received: from [199.232.76.173] (port=40390 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MoeqU-0003SR-9h for emacs-orgmode@gnu.org; Fri, 18 Sep 2009 10:53:58 -0400 Received: from ey-out-1920.google.com ([74.125.78.150]:61721) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MoeqT-0007ap-TI for emacs-orgmode@gnu.org; Fri, 18 Sep 2009 10:53:58 -0400 Received: by ey-out-1920.google.com with SMTP id 3so532068eyh.34 for ; Fri, 18 Sep 2009 07:53:56 -0700 (PDT) In-Reply-To: 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: PT Cc: emacs-orgmode@gnu.org On Sep 18, 2009, at 1:31 PM, PT wrote: > Is is possible to eliminate the DONE state completely? I'd like a > single > state TODO and want to switch between TODO and nothing states, but > > (setq org-todo-keywords '((sequence "TODO"))) > > doesn't seem to work, because it always considers the last state as a > DONE state. > > Is it possible to have only a single actionable task state and nothing > else, so when I switch then the sequence is nothing-TODO-nothing- > TODO-...? Hi PT, the following seems to work, but am not sure if it will break something. (setq org-todo-keywords '((sequence "TODO" "|"))) HTH - Carsten