emacs-orgmode
[Top][All Lists]
Advanced

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

[Orgmode] Re: custom agenda view


From: Matt Lundin
Subject: [Orgmode] Re: custom agenda view
Date: Thu, 24 Dec 2009 06:21:23 -0500
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1 (darwin)

Yuri Goncharov <address@hidden> writes:

> I try to make custom agenda view with todo keyword STARTED and tag @HOME
> I wrote this code
>
> (setq org-agenda-custom-commands
>       (quote  
>       (("w" "work tasks" tags-todo
>       "address@hidden" ((org-agenda-todo-ignore-with-date nil))) 
>       ("h" "home tasks" tags-todo
>       "address@hidden" ((org-agenda-todo-ignore-with-date nil))) 
>       ("n" "Notes" tags "NOTE" nil))))
>
> but it's not work.

Does the following work? Since STARTED is a todo state, it needs to be
specified with a different syntax.

(setq org-agenda-custom-commands
       (quote  
        (("w" "work tasks" tags-todo
        "@WORK/!STARTED" ((org-agenda-todo-ignore-with-date nil))) 
        ("h" "home tasks" tags-todo
        "@HOME/!STARTED" ((org-agenda-todo-ignore-with-date nil))) 
        ("n" "Notes" tags "NOTE" nil))))

Best,
Matt




reply via email to

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