From mboxrd@z Thu Jan 1 00:00:00 1970 From: Neilen Marais Subject: Hiding "future" tasks in tags-todo agenda view Date: Fri, 14 Oct 2011 20:09:22 +0000 (UTC) Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([140.186.70.92]:52403) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1REoaZ-0004ex-43 for emacs-orgmode@gnu.org; Fri, 14 Oct 2011 16:42:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1REoaS-000473-Pv for emacs-orgmode@gnu.org; Fri, 14 Oct 2011 16:42:42 -0400 Received: from lo.gmane.org ([80.91.229.12]:49512) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1REoaR-00045a-VP for emacs-orgmode@gnu.org; Fri, 14 Oct 2011 16:42:36 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1REo4V-0000tL-Ut for emacs-orgmode@gnu.org; Fri, 14 Oct 2011 22:09:36 +0200 Received: from 197.106.63.14 ([197.106.63.14]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 14 Oct 2011 22:09:35 +0200 Received: from nmarais by 197.106.63.14 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 14 Oct 2011 22:09:35 +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 Hi, I've recently switched from using tracks (http://getontracks.org/) to org mode for GTD task management. One neat tracks feature that I am struggling to reproduce is the "show task from date". If you add a task with no date set, they show up immediately in the context next action lists, but if you have a "show from" date in the future, it only shows the task from that date onwards. Scheduling timestamps (http://orgmode.org/worg/org-faq.html#sec-16-9) seem like they should do exactly that, but they don't seem to work in my custom org-agenda that I use to show only items with a NEXT todo state and an assigned context. However, it shows all items irrespective of the scheduling setting. (setq org-agenda-custom-commands '( ("c" "Context Next Tasks" tags-todo (mapconcat 'car my-org-context-tag-alist "|") ((org-agenda-skip-function '(org-agenda-skip-entry-if 'nottodo '("NEXT"))) (org-agenda-sorting-strategy '(tag-up)) (org-agenda-overriding-header "Context Next Tasks") )) )) How can I make this custom agenda skip items that are scheduled in the future, while also keeping unscheduled tasks? I have also tried adding (org-agenda-entry-types '(:scheduled)) but that did not seem to make any difference.