Ivan Kanis <[EMAIL PROTECTED]> 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


_______________________________________________
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