emacs-orgmode
[Top][All Lists]
Advanced

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

Re: [Orgmode] Re: Agenda view with tags filter


From: Bastien
Subject: Re: [Orgmode] Re: Agenda view with tags filter
Date: Thu, 22 Nov 2007 00:29:29 +0000
User-agent: Gnus/5.110007 (No Gnus v0.7) Emacs/23.0.0 (gnu/linux)

Ivan Kanis <address@hidden> writes:

>> (org-add-agenda-custom-command
>>  '("h" agenda ""
>>    ((org-agenda-skip-function 
>>      '(org-agenda-skip-entry 'notregexp ":home:"))
>>     (org-agenda-overriding-header "Agenda with :home: tag:"))))
>
> Thanks for the tip, you code did not quite work for me. I think
> org-agenda-skip-entry was missiong.

Sorry, typo.  Here is the correct version

(org-add-agenda-custom-command
 '("h" agenda ""
   ((org-agenda-skip-function 
     '(org-agenda-skip-entry-if 'notregexp ":home:"))
    (org-agenda-overriding-header "Agenda with :home: tag:"))))

Basically replace `org-agenda-skip-entry' (which doesn't exist) by
`org-agenda-skip-entry-if'.

-- 
Bastien




reply via email to

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