From mboxrd@z Thu Jan 1 00:00:00 1970 From: Zach Sheffler Subject: Re: Display only after inactive timestamp Date: Fri, 15 Aug 2014 16:41:14 -0500 Message-ID: References: <9067eb9f077b42d6bd94df693ecceb48@fcmailsvr2.familycareinc.org> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37775) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XIPFN-0004lw-GW for emacs-orgmode@gnu.org; Fri, 15 Aug 2014 17:41:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XIPFL-0003fA-D2 for emacs-orgmode@gnu.org; Fri, 15 Aug 2014 17:41:17 -0400 Received: from mail-yh0-x233.google.com ([2607:f8b0:4002:c01::233]:49623) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XIPFL-0003f2-8S for emacs-orgmode@gnu.org; Fri, 15 Aug 2014 17:41:15 -0400 Received: by mail-yh0-f51.google.com with SMTP id f73so2733979yha.38 for ; Fri, 15 Aug 2014 14:41:14 -0700 (PDT) In-Reply-To: <9067eb9f077b42d6bd94df693ecceb48@fcmailsvr2.familycareinc.org> 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: Subhan Michael Tindall Cc: "emacs-orgmode@gnu.org" The entire global setup is included at the end. For readability, here's the relevant command: (quote (("b" "Agenda with bitwork" ((agenda "" nil) (tags "bit" ((org-agenda-overriding-header "Bitwork") (org-agenda-skip-function (quote (org-agenda-skip-entry-if (quote todo) (quote done)))))) (tags "rest" ((org-agenda-overriding-header "Rest") (org-agenda-skip-function (quote (org-agenda-skip-entry-if (quote todo) (quote done)))) (org-agenda-skip-function (quote (org-agenda-skip-entry-if (quote timestamp) The "rest" tab is currently set up such that it will hide before the timestamp, but the timestamp (scheduled, technically) must be active and thus shows on the agenda. Is there a way to keep it off the time grid while still perserving taht? Here's my global setup: '(org-agenda-clockreport-parameter-plist (quote (:link f :maxlevel 3))) '(org-agenda-custom-commands (quote (("b" "Agenda with bitwork" ((agenda "" nil) (tags "bit" ((org-agenda-overriding-header "Bitwork") (org-agenda-skip-function (quote (org-agenda-skip-entry-if (quote todo) (quote done)))))) (tags "rest" ((org-agenda-overriding-header "Rest") (org-agenda-skip-function (quote (org-agenda-skip-entry-if (quote todo) (quote done)))) (org-agenda-skip-function (quote (org-agenda-skip-entry-if (quote timestamp) (quote future))))))) nil nil) ("w" "Unscheduled TODO items" ((todo "TODO" ((org-agenda-skip-function (quote (org-agenda-skip-entry-if (quote scheduled)))) (org-agenda-tag-filter-preset (quote ("-rest" "-bit")))))) nil)))) '(org-agenda-diary-file "C:\\Users\\sheff036\\Dropbox\\todo\\org-diary.org") '(org-agenda-files (quote ("c:/Users/sheff036/Dropbox/todo/Teaching.org" "c:/Users/sheff036/Dropbox/todo/Work.org" "c:/Users/sheff036/Dropbox/todo/Research.org" "c:/Users/sheff036/Dropbox/todo/Personal.org"))) '(org-agenda-include-diary t) '(org-agenda-insert-diary-extract-time t) '(org-agenda-insert-diary-strategy (quote top-level)) '(org-agenda-log-mode-items (quote (closed clock))) '(org-agenda-mouse-1-follows-link nil) '(org-agenda-skip-deadline-prewarning-if-scheduled 3) '(org-agenda-skip-scheduled-if-done t) '(org-agenda-span (quote day)) '(org-agenda-start-with-clockreport-mode t) '(org-agenda-start-with-log-mode nil) '(org-agenda-tags-todo-honor-ignore-options t) '(org-agenda-todo-ignore-scheduled (quote future)) '(org-agenda-window-setup (quote other-frame)) On 8/15/14, Subhan Michael Tindall wrote: > Can you provide a copy of your current agenda setup (custom and global?) > > > From: emacs-orgmode-bounces+subhant=familycareinc.org@gnu.org > [mailto:emacs-orgmode-bounces+subhant=familycareinc.org@gnu.org] On Behalf > Of Zach Sheffler > Sent: Friday, August 15, 2014 1:23 PM > To: emacs-orgmode@gnu.org > Subject: [O] Display only after inactive timestamp > > I am trying to get items with a specific tag to show only after an inactive > (recurring) timestamp such that they show on the search-by-tag but not on > the Day-Agenda. I can't seem to figure out the proper way to set up the > agenda command, however. Is there a way to accomplish this? > > This message is intended for the sole use of the individual and entity to > which it is addressed and may contain information that is privileged, > confidential and exempt from disclosure under applicable law. If you are not > the intended addressee, nor authorized to receive for the intended > addressee, you are hereby notified that you may not use, copy, disclose or > distribute to anyone the message or any information contained in the > message. If you have received this message in error, please immediately > advise the sender by reply email and delete the message. Thank you. >