Nathan Neff <[email protected]> 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.
[email protected]
http://lists.gnu.org/mailman/listinfo/emacs-orgmode