Yuri Goncharov <g...@hl.ru> 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
>       "+start...@work" ((org-agenda-todo-ignore-with-date nil))) 
>       ("h" "home tasks" tags-todo
>       "+start...@home" ((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


_______________________________________________
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