From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matt Lundin Subject: Re: Re: Filter scheduled items Date: Fri, 01 Oct 2010 12:19:54 -0400 Message-ID: <87y6ahril1.fsf@fastmail.fm> References: <87r5gb418s.fsf@fastmail.fm> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from [140.186.70.92] (port=45240 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P1iLD-0007Qf-Am for emacs-orgmode@gnu.org; Fri, 01 Oct 2010 12:20:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1P1iKz-0008N0-Af for emacs-orgmode@gnu.org; Fri, 01 Oct 2010 12:19:58 -0400 Received: from out5.smtp.messagingengine.com ([66.111.4.29]:47353) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1P1iKz-0008Mp-5Z for emacs-orgmode@gnu.org; Fri, 01 Oct 2010 12:19:57 -0400 In-Reply-To: (Jeff Horn's message of "Fri, 1 Oct 2010 08:34:27 -0400") 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: Jeff Horn Cc: Org Mode Jeff Horn writes: > I meant in particular whether there was a built-in agenda view for > *unscheduled* items. > With the following setting... (setq org-agenda-todo-ignore-scheduled t) ...org-todo-list (C-c a t) will show only unscheduled todos. If you don't want the setting above to apply globally, you could bind it to a custom command: (add-to-list 'org-agenda-custom-commands '("u" "Unscheduled" todo "" ((org-agenda-todo-ignore-scheduled t)))) Best, Matt