From mboxrd@z Thu Jan 1 00:00:00 1970 From: lbmlist@hethcote.com Subject: Re: Understanding org-agenda-todo-list-sublevels Date: Sun, 19 Feb 2012 20:34:33 -0700 (MST) Message-ID: References: <87ty2m2sd7.fsf@norang.ca> Reply-To: lbmlist@hethcote.com Mime-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII Return-path: Received: from eggs.gnu.org ([140.186.70.92]:40960) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RzK1L-0001Qj-KS for emacs-orgmode@gnu.org; Sun, 19 Feb 2012 22:34:36 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RzK1K-0004xT-Iu for emacs-orgmode@gnu.org; Sun, 19 Feb 2012 22:34:35 -0500 Received: from caritas.hethcote.com ([72.19.167.226]:65281) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RzK1K-0004xP-CF for emacs-orgmode@gnu.org; Sun, 19 Feb 2012 22:34:34 -0500 In-Reply-To: <87ty2m2sd7.fsf@norang.ca> 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: Bernt Hansen Cc: lbmlist@hethcote.com, Org Mode List On Sun, 19 Feb 2012, Bernt Hansen wrote: > lbmlist@hethcote.com writes: > >> If I have something like: >> >> (setq org-agenda-custom-commands >> '(("Q" "Q-Who" todo "IMPLEMENT" ((org-agenda-todo-list-sublevels t))) >> )) > > Hi Louis, > > I think we need more information. In a todo agenda view you should see > the tasks and any subtasks that are not in a done state. > Your view already shows > >> Coding: IMPLEMENT explore percent type [33%] >> Coding: IMPLEMENT the exploration > > which is the task and one of the subtasks. If FINISHED is a done state > you won't get that in the view. I think PLAN should also be listed (if > it is a todo state and not a done state) > > How are your todo keywords defined? (setq org-todo-keywords (quote ( (sequence "TODO" "|" "DONE") (sequence "SCHEDULE" "INPROCESS" "|" "COMPLETED") (sequence "IMAGINE" "PLAN" "IMPLEMENT" "HOLD" "|" "FINISHED" "ABANDONED") ))) (setq org-agenda-custom-commands '(("Y" "Q-Who" todo "IMPLEMENT" ((org-agenda-todo-list-sublevels t))) )) it occurs to me that the `todo "IMPLEMENT"` match hides the PLAN and the "FINISHED" is out of the view by default so that it is actually functioning as designed WRT the *** IMPLEMENT explore percent type [33%] todo. > > Regards, > Bernt > >