From mboxrd@z Thu Jan 1 00:00:00 1970 From: James Harkins Subject: Re: Sharing: Agenda skip function to remove future-scheduled items Date: Wed, 15 Oct 2014 02:42:54 +0000 (UTC) Message-ID: References: <87egubjm63.wl-jamshark70@qq.com> <86y4sihlms.fsf@example.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33867) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XeEYc-0002NY-PM for emacs-orgmode@gnu.org; Tue, 14 Oct 2014 22:43:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XeEYP-0002x7-Cc for emacs-orgmode@gnu.org; Tue, 14 Oct 2014 22:43:18 -0400 Received: from plane.gmane.org ([80.91.229.3]:60748) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XeEYP-0002wT-41 for emacs-orgmode@gnu.org; Tue, 14 Oct 2014 22:43:09 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1XeEYM-0003Hb-JF for emacs-orgmode@gnu.org; Wed, 15 Oct 2014 04:43:07 +0200 Received: from 117.136.40.132 ([117.136.40.132]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 15 Oct 2014 04:43:06 +0200 Received: from jamshark70 by 117.136.40.132 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 15 Oct 2014 04:43:06 +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 Sebastien Vauban writes: > I use the following (tricky) settings, which should do what you have in > mind, if I'm not mistaken: > > #+begin_src emacs-lisp > ;; Don't show scheduled entries in the global `todo' list. > (setq org-agenda-todo-ignore-scheduled 'future) > > ;; Don't show entries scheduled in the future in the global > ;; `todo' list (until they are within the warning period). > (setq org-agenda-todo-ignore-deadlines 'near) > > ;; Honor `todo' list `org-agenda-todo-ignore...' options also > ;; in the `tags-todo' list. > (setq org-agenda-tags-todo-honor-ignore-options t) > #+end_src Interesting. How would I apply those settings to only one custom agenda command, while leaving the others with the default behavior of showing future schedules? hjh