On Sep 30, 2009, at 2:07 PM, PT wrote:

I'm trying to filter the global todo list, so that items with certain
tags don't appear in it, but this solution doesn't seem to work:

(setq org-agenda-custom-commands
     '(("h" "Agenda and todo"
        ((agenda "")
         (alltodo "-test")))))



The todo agenda is not very good in matching. Better to use the tags- todo view, but specify no tags, onlt a todo match after the slash:


(setq org-agenda-custom-commands
     '(("h" "Agenda and todo"
        ((agenda "")
         (tags-todo "/-test")))))

- Carsten



Items with "test" tag are shown nevertheless. How could I filter them?





_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode



_______________________________________________
Emacs-orgmode mailing list
Remember: 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