From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paul Mead Subject: org-agenda-todo-ignore-scheduled setting not affecting custom agenda Date: Wed, 28 Apr 2010 10:38:02 +0100 Message-ID: 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 1O73in-0000WE-Mo for emacs-orgmode@gnu.org; Wed, 28 Apr 2010 05:38:21 -0400 Received: from [140.186.70.92] (port=37749 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O73ij-0000VT-9d for emacs-orgmode@gnu.org; Wed, 28 Apr 2010 05:38:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1O73ii-0004Tt-0b for emacs-orgmode@gnu.org; Wed, 28 Apr 2010 05:38:17 -0400 Received: from lo.gmane.org ([80.91.229.12]:35069) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O73ih-0004Tg-Lg for emacs-orgmode@gnu.org; Wed, 28 Apr 2010 05:38:15 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1O73ie-0003gH-FJ for emacs-orgmode@gnu.org; Wed, 28 Apr 2010 11:38:12 +0200 Received: from external.atkinsglobal.com ([193.117.23.129]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 28 Apr 2010 11:38:12 +0200 Received: from paul.d.mead by external.atkinsglobal.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 28 Apr 2010 11:38:12 +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 Hi I've got some custom agendas set up, see the extract from my org config file below. If I use one of the built-in agenda comands, for instance C-c a t any scheduled todos are omitted as expected. If I select any of my custom agenda commands, they are not. Any idea why this would be? Thanks, Paul ;; Agenda settings (setq org-agenda-start-with-log-mode t) (setq org-agenda-include-diary t) (setq org-agenda-ndays 1) (setq org-agenda-start-on-weekday nil) (setq org-agenda-tags-column 120) (setq org-agenda-todo-ignore-scheduled 'all) (setq org-agenda-todo-ignore-deadlines nil) (setq org-enforce-todo-dependencies t) (setq org-agenda-dim-blocked-tasks t) (setq org-agenda-skip-deadline-if-done t) (setq org-agenda-skip-scheduled-if-done t) (setq org-agenda-skip-timestamp-if-done t) (setq org-agenda-skip-unavailable-files t) (setq org-agenda-window-setup 'current-window) (setq org-archive-default-command 'org-archive-to-archive-sibling) (setq org-agenda-prefix-format '((agenda . " %-20:c%?-12t% s") (timeline . " % s") (todo . " %-20:c") (tags . " %-20:c") (search . " %-20:c"))) (setq org-agenda-todo-keyword-format "%-10s") (setq org-agenda-custom-commands '(("a" "Custom block Agenda" ((agenda "") (todo "STARTED") (tags-todo "FOCUS/!-STARTED-WAITING" ((org-agenda-todo-ignore-scheduled t))))) ("d" "DONE list" todo "DONE" ((org-agenda-todo-ignore-scheduled nil) (org-agenda-todo-ignore-with-date nil) (org-agenda-todo-ignore-deadlines nil))) ("p" "Project list" tags "project") ("c" "Call list" tags-todo "phone" ((ps-number-of-columns 1) (ps-landscape-mode t) (org-agenda-prefix-format " %-20:c [ ] " ) (Orgae-agenda-with-colors nil) (org-agenda-remove-tags t)) ("~/My Dropbox/calls.ps")) ("o" "In the office" ((tags-todo "@office") (tags-todo "online") (tags-todo "pc") (tags-todo "phone") (tags-todo "penpaper") )) ("h" "Working from home" ((tags-todo "wfh") (tags-todo "online") (tags-todo "pc") (tags-todo "phone") (tags-todo "penpaper") )) ("f" "FOCUS list" tags-todo "FOCUS" ((org-agenda-overriding-header "Focus actions:")))) )