emacs-orgmode
[Top][All Lists]
Advanced

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

[Orgmode] Fwd: Agenda: Hide Sched. Items


From: Nathan Neff
Subject: [Orgmode] Fwd: Agenda: Hide Sched. Items
Date: Mon, 13 Sep 2010 14:06:43 -0500

---------- Forwarded message ----------
From: Nathan Neff <address@hidden>
Date: Mon, Sep 13, 2010 at 2:06 PM
Subject: Re: Agenda: Hide Sched. Items
To: Matt Lundin <address@hidden>


On Mon, Sep 13, 2010 at 1:07 PM, Matt Lundin <address@hidden> wrote:
> 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]
>          ))))

Thanks! I don't want deadlines, and I think that :timestamp
entries are items like "Marked DONE", or "Marked STARTED".
I also don't really know what :sexp items look like, although I suspect
they're "diary" style headlines that show up when you keep a diary, like this:
* 2010-09 September.

So, I just marked the list as empty (see below), and it works the way
I want.  Thanks again!

> (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 '()) ;; [1] <-----pass blank list.
>          ))))

Thanks again,
--Nate

> HTH,
> Matt
>
> Footnotes:
>
> [1] Added line. Note the absence of :scheduled.
>



reply via email to

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