|
| From: | Carsten Dominik |
| Subject: | Re: [Orgmode] Filtering the global todo list in a custom agenda |
| Date: | Wed, 30 Sep 2009 17:27:24 +0200 |
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. address@hidden http://lists.gnu.org/mailman/listinfo/emacs-orgmode
| [Prev in Thread] | Current Thread | [Next in Thread] |