From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matt Lundin Subject: Re: Agenda: Hide Sched. Items Date: Mon, 13 Sep 2010 14:07:24 -0400 Message-ID: <87vd69y0tf.fsf@archdesk.localdomain> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from [140.186.70.92] (port=38006 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OvDR9-0004zI-9N for emacs-orgmode@gnu.org; Mon, 13 Sep 2010 14:07:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OvDR7-0004nu-NO for emacs-orgmode@gnu.org; Mon, 13 Sep 2010 14:07:27 -0400 Received: from out2.smtp.messagingengine.com ([66.111.4.26]:46800) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OvDR7-0004nq-Ji for emacs-orgmode@gnu.org; Mon, 13 Sep 2010 14:07:25 -0400 In-Reply-To: (Nathan Neff's message of "Mon, 13 Sep 2010 12:52:37 -0500") 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: Nathan Neff Cc: emacs-orgmode Nathan Neff writes: > Is there a way to hide Scheduled Items in a custom Agenda View? > Yes. You can use the variable org-agenda-entry-types. > I have the following custom agenda set up: > > ("&" "Timeline" ((agenda "" )) > ((org-agenda-ndays 1) > (org-agenda-show-log t) > (org-agenda-clockreport-mode t) > (org-agenda-log-mode-items '(clock)) > ) > ) > Here's an example: (setq org-agenda-custom-commands '(("&" "Timeline" ((agenda "" )) ((org-agenda-ndays 1) (org-agenda-show-log t) (org-agenda-clockreport-mode t) (org-agenda-log-mode-items '(clock)) (org-agenda-entry-types '(:timestamp :sexp :deadline)) ;; [1] )))) HTH, Matt Footnotes: [1] Added line. Note the absence of :scheduled.