From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paul Mead Subject: Re: Org-mode version 6.30trans (release_6.30d.822.g738ba); Many DONE items missing from agenda view Date: Thu, 17 Sep 2009 10:58:17 +0100 Message-ID: <87fxaldhae.fsf@gmail.com> References: <6f9073780909160924n1eab6642j105a44554e1b9b6f@mail.gmail.com> <877hvyk65a.fsf@gollum.intra.norang.ca> 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 1MoDlQ-0006lb-Fa for emacs-orgmode@gnu.org; Thu, 17 Sep 2009 05:58:56 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MoDlL-0006gi-6r for emacs-orgmode@gnu.org; Thu, 17 Sep 2009 05:58:55 -0400 Received: from [199.232.76.173] (port=51549 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MoDlL-0006gX-0c for emacs-orgmode@gnu.org; Thu, 17 Sep 2009 05:58:51 -0400 Received: from mx20.gnu.org ([199.232.41.8]:44005) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1MoDlI-00037d-Cw for emacs-orgmode@gnu.org; Thu, 17 Sep 2009 05:58:49 -0400 Received: from lo.gmane.org ([80.91.229.12]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MoDlH-0002cU-2y for emacs-orgmode@gnu.org; Thu, 17 Sep 2009 05:58:47 -0400 Received: from list by lo.gmane.org with local (Exim 4.50) id 1MoDlB-0008M7-Df for emacs-orgmode@gnu.org; Thu, 17 Sep 2009 11:58:41 +0200 Received: from cpc3-rdng14-0-0-cust786.winn.cable.ntl.com ([82.0.211.19]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 17 Sep 2009 11:58:41 +0200 Received: from paul.d.mead by cpc3-rdng14-0-0-cust786.winn.cable.ntl.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 17 Sep 2009 11:58:41 +0200 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: emacs-orgmode@gnu.org Bernt Hansen writes: > >> org-agenda-todo-ignore-scheduled t > >> org-agenda-todo-ignore-with-date t > >> org-agenda-todo-ignore-deadlines t > > Are the missing ones the tasks with SCHEDULED: or DEADLINE: dates? > If so you can create a custom agenda view that turns off these variables > so all tasks show up. > > -Bernt That's great, I've now got the following custom agenda and it works fine, many thanks! (setq org-agenda-custom-commands '(("a" "Custom block Agenda" ((agenda "") (todo "STARTED"))) ("d" todo "DONE" ((org-agenda-todo-ignore-scheduled nil) (org-agenda-todo-ignore-with-date nil) (org-agenda-todo-ignore-deadlines nil))) )) Paul