From mboxrd@z Thu Jan 1 00:00:00 1970 From: torys.anderson@gmail.com (Tory S. Anderson) Subject: Help: Saving Agenda Views Date: Wed, 04 Feb 2015 13:21:19 -0500 Message-ID: <87pp9pbkrk.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55292) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YJ4Zr-0008A2-5m for emacs-orgmode@gnu.org; Wed, 04 Feb 2015 13:21:32 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YJ4Zl-00043H-DM for emacs-orgmode@gnu.org; Wed, 04 Feb 2015 13:21:27 -0500 Received: from mail-yh0-x22b.google.com ([2607:f8b0:4002:c01::22b]:40975) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YJ4Zl-00043B-9H for emacs-orgmode@gnu.org; Wed, 04 Feb 2015 13:21:21 -0500 Received: by mail-yh0-f43.google.com with SMTP id 29so1414529yhl.2 for ; Wed, 04 Feb 2015 10:21:20 -0800 (PST) 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: orgmode list I'm trying to save an agenda view that I can arrive at in the following way: 1. Load agenda (default 1-day view) 2. / TAB "English_Class" (reduce to only entries tagged English_Class) 3. \ - TAB "schedule" (further reduce by removing entries having a :schedule tag) 4. w (load a 7-day span, week-view) However, I've been unable to grok the directions at http://orgmode.org/worg/org-tutorials/org-custom-agenda-commands.html The closest I've come is this: --8<---------------cut here---------------start------------->8--- (setq org-agenda-custom-commands '(("c" "Class agendas" agenda "" ((org-agenda-tag-filter '("+LMC_6215")) (org-agenda-span 7))))) --8<---------------cut here---------------end--------------->8--- But while this successfully sets the span, it fails to filter the buffer (let alone getting to my second filter). Where am I going wrong?