emacs-orgmode
[Top][All Lists]
Advanced

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

[O] org-agenda-skip-function does not find inherited tags


From: Adrian Bradd
Subject: [O] org-agenda-skip-function does not find inherited tags
Date: Mon, 4 Sep 2017 11:06:40 -0400

Hello,

I have the following custom agenda command:

(setq org-agenda-custom-commands
      '(("ww" "Work 2 day view"
         ((agenda ""
           ((org-agenda-files '("~/tmp/tmp.org"))
            (org-agenda-skip-function '(org-agenda-skip-entry-if 'notregexp ":@work:"))
            (org-agenda-start-on-weekday nil)
            (org-agenda-span 2)
            (org-agenda-overriding-header "\n2 day work view\n-----------------\n")))))))

Given the sample file below:

* Top heading with tags                                         :@work:admin:
** Next heading (inherited tags)
   SCHEDULED: <2017-09-04 Mon>
** Next heading (explicit tags)                                 :@work:admin:
   SCHEDULED: <2017-09-04 Mon>

The agenda will only display headings that have the tag explicitly defined. In this case, "Next heading (explicit tags)".

Is there a way I can convince the agenda to honour inherited tags in this case?

Cheers,

Adrian



reply via email to

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