From mboxrd@z Thu Jan 1 00:00:00 1970 From: Suvayu Ali Subject: Re: Tasks started tag Date: Sun, 13 Oct 2013 12:25:40 +0200 Message-ID: <20131013102540.GE31274@kuru.dyndns-at-home.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39340) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VVIry-0004e4-B5 for emacs-orgmode@gnu.org; Sun, 13 Oct 2013 06:26:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VVIrp-0005So-Te for emacs-orgmode@gnu.org; Sun, 13 Oct 2013 06:25:54 -0400 Received: from mail-ea0-x22b.google.com ([2a00:1450:4013:c01::22b]:63102) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VVIrp-0005Sk-IF for emacs-orgmode@gnu.org; Sun, 13 Oct 2013 06:25:45 -0400 Received: by mail-ea0-f171.google.com with SMTP id n15so2789896ead.30 for ; Sun, 13 Oct 2013 03:25:44 -0700 (PDT) Content-Disposition: inline In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org 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.