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