From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernt Hansen Subject: Re: workflow states Date: Thu, 05 Feb 2009 10:30:28 -0500 Message-ID: <877i44q4tn.fsf@gollum.intra.norang.ca> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LV6BZ-0006Gh-1L for emacs-orgmode@gnu.org; Thu, 05 Feb 2009 10:30:37 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LV6BX-0006Dl-7Y for emacs-orgmode@gnu.org; Thu, 05 Feb 2009 10:30:35 -0500 Received: from [199.232.76.173] (port=49192 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LV6BW-0006DP-Rc for emacs-orgmode@gnu.org; Thu, 05 Feb 2009 10:30:34 -0500 Received: from mho-02-bos.mailhop.org ([63.208.196.179]:56616) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LV6BW-0008DD-CH for emacs-orgmode@gnu.org; Thu, 05 Feb 2009 10:30:34 -0500 In-Reply-To: (Rich E.'s message of "Thu\, 5 Feb 2009 16\:04\:06 +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: Rich E Cc: emacs-orgmode@gnu.org Rich E writes: > I'd like to simply add a VERIFY workflow state between TODO and DONE > in my org files. I am looking at section 5.2.1 of the manual for how > to do this, but it is not working like I would expect. Here is the > code I have in my .emacs file: > > (setq org-todo-keywords '("TODO" "VERIFY" "DONE") > org-todo-interpretation 'sequence) > anyone know how to do what I am trying? It seems basic enough. > regards, Hi Rich, (setq org-todo-keywords '((sequence "TODO" "VERIFY" "|" "DONE"))) If you want specific colours you can add something like this: (setq org-todo-keyword-faces '(("TODO" :foreground "blue" :weight bold) ("VERIFY" :foreground "red" :weight bold) ("DONE" :foreground "forest green" :weight bold))) You'll need to reload the vars in your org file for changes to take effect. I have a #+STARTUP: showall at the top of each of my files and I just C-c C-c on it. HTH, Bernt