Nathan Neff <nathan.n...@gmail.com> 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.

_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to