From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christoph Groth Subject: Re: temporarily un-ignoring scheduled tasks in global todo list Date: Thu, 22 May 2014 17:48:38 +0200 Message-ID: <87ppj5rezt.fsf@grothesque.org> References: <87sio3fy5t.fsf@grothesque.org> <871tvnjr22.fsf@bzg.ath.cx> <87fvk3ti1g.fsf@grothesque.org> <87mwebuu3k.fsf@bzg.ath.cx> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36447) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WnVEn-0002ai-OR for emacs-orgmode@gnu.org; Thu, 22 May 2014 11:49:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WnVEh-0006IV-S7 for emacs-orgmode@gnu.org; Thu, 22 May 2014 11:48:57 -0400 Received: from plane.gmane.org ([80.91.229.3]:48146) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WnVEh-0006IM-MA for emacs-orgmode@gnu.org; Thu, 22 May 2014 11:48:51 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1WnVEd-0000xi-Bf for emacs-orgmode@gnu.org; Thu, 22 May 2014 17:48:47 +0200 Received: from dra38-5-82-246-248-175.fbx.proxad.net ([82.246.248.175]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 22 May 2014 17:48:47 +0200 Received: from christoph by dra38-5-82-246-248-175.fbx.proxad.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 22 May 2014 17:48:47 +0200 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 > Christoph Groth writes: > >> There doesn't seem to be an easy way to make a custom agenda view >> that only shows todo items that are scheduled for the future. Or am >> I wrong? > > Use a TODO agenda view, and set `org-agenda-todo-ignore-scheduled' to > past within this custom agenda view. Thanks, the following now works as one element of org-agenda-custom-commands: ("f" "List TODO entries scheduled for the future" todo "" ((org-agenda-todo-ignore-scheduled 'past) (org-agenda-skip-function '(org-agenda-skip-entry-if 'notscheduled)))) I see now that this is mentioned in Appendix 7 in the manual... With orgmode, the problem seems to be not whether some functionality is implemented, but where to find it.