From: Ihor Radchenko <yantar92@gmail.com>
To: Karl Voit <news2042@Karl-Voit.at>
Cc: emacs-orgmode@gnu.org
Subject: Re: Agenda without todos only if there is no other timestamp
Date: Wed, 04 May 2022 17:20:40 +0800 [thread overview]
Message-ID: <87mtfxhcwn.fsf@localhost> (raw)
In-Reply-To: <2022-04-05T10-40-55@devnull.Karl-Voit.at>
Karl Voit <devnull@Karl-Voit.at> writes:
> I've got following custom agenda for exporting:
>
> | ("n" "no TODO events +180d"
> | ((agenda "no TODO events +180d"
> | ((org-agenda-span 180)
> | (org-agenda-time-grid nil)
> | (org-agenda-entry-types '(:timestamp :sexp))
> | (org-agenda-skip-function
> | '(or
> | (org-agenda-skip-entry-if 'todo 'any);; skip if any TODO state is found
> | (org-agenda-skip-entry-if 'category "errors");; skip if any TODO state is found
> | (my-skip-tag "lp")
> | )))))
> | nil (,(concat my-org-files-path "agenda_180d_filtered_raw.html")))
> ...
> Tasks should be omitted only if there is no other time-stamp than
> deadline or scheduled.
>
> Any ideas on that one?
(org-agenda-skip-function
'(or
(and (org-agenda-skip-entry-if 'todo 'any);; skip if any TODO state is found
(org-agenda-skip-entry-if 'deadline 'scheduled))
(org-agenda-skip-entry-if 'category "errors");; skip if any TODO state is found
(my-skip-tag "lp")))
Best,
Ihor
prev parent reply other threads:[~2022-05-04 9:23 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-05 8:48 Agenda without todos only if there is no other timestamp Karl Voit
2022-04-06 3:16 ` TRS-80
2022-05-03 23:06 ` TRS-80
2022-05-04 11:52 ` Karl Voit
2022-05-04 9:20 ` Ihor Radchenko [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.orgmode.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87mtfxhcwn.fsf@localhost \
--to=yantar92@gmail.com \
--cc=emacs-orgmode@gnu.org \
--cc=news2042@Karl-Voit.at \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).