emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Orgmode] Re: Agenda: Hide Sched. Items


From: Matt Lundin
Subject: [Orgmode] Re: Agenda: Hide Sched. Items
Date: Mon, 13 Sep 2010 14:07:24 -0400
User-agent: Gnus/5.110011 (No Gnus v0.11) Emacs/24.0.50 (gnu/linux)

Nathan Neff <address@hidden> 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.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]