emacs-orgmode
[Top][All Lists]
Advanced

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

Re: [Orgmode] How to view tasks with certain Property tag in Agenda view


From: Matthew Lundin
Subject: Re: [Orgmode] How to view tasks with certain Property tag in Agenda view
Date: Tue, 28 Apr 2009 00:25:24 -0500
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.91 (gnu/linux)

Hi Varnit,

"Varnit Suri" <address@hidden> writes:

> So here's my code:
>
> (setq org-agenda-custom-commands
>       '(("h" "Agenda and Home-related tasks"
>        ((agenda "" ((org-agenda-skip-function
> '(org-agenda-skip-entry-if 'regexp ":HOME:"))))))))
>
> The only problem I 'm left to solve is, that this skips entries with the
> tag HOME, rather than including them. I 'm only trying a way to do the
> inverse match (ie skip entries that don't match HOME), but I havent been
> able to nail the syntax.

--8<---------------cut here---------------start------------->8---
(setq org-agenda-custom-commands
      '(("h" "Agenda and Home-related tasks"
         ((agenda "" ((org-agenda-skip-function
         '(org-agenda-skip-entry-if 'notregexp ":HOME:"))))))))
--8<---------------cut here---------------end--------------->8---

I think this should do it.

Regards,                       
Matt




reply via email to

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