emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Chris Poole <lists@chrispoole.com>
To: Eric Abrahamsen <eric@ericabrahamsen.net>
Cc: "emacs-orgmode@gnu.org" <emacs-orgmode@gnu.org>
Subject: Re: How to find the headline matching a string
Date: Sat, 31 May 2014 17:51:18 +0100	[thread overview]
Message-ID: <CAF=P9QAqxvkP=HjEgfu2mXLm8ggWe7-yDA7-TY198aaacr4XBA@mail.gmail.com> (raw)
In-Reply-To: <87bnuedl38.fsf@ericabrahamsen.net>

[-- Attachment #1: Type: text/plain, Size: 1619 bytes --]

Eric Abrahamsen:
> the `org-map-entries' function can be given a scope of 'agenda

That worked perfectly, thanks. Here's what I ended up with:

(org-map-entries (lambda ()
                           (when (equal title (org-get-heading t t))
                             (org-entry-put (point) "TODO" "DONE")))
                         tag 'agenda)


Cheers,
Chris



On Sat, May 31, 2014 at 4:27 PM, Eric Abrahamsen <eric@ericabrahamsen.net>
wrote:

> Chris Poole <lists@chrispoole.com> writes:
>
> > Hi all,
> >
> > Suppose I have a string, "my first task", that I know is tagged with
> > "laptop".
> >
> > I want to search through the agenda files for a headline that matches
> > this string, to be able to mark it as DONE (in an automated fashion).
> >
> > I can't find a function to search through for the headline --- is
> > there one?
> >
> > Else, is it best to concat all the agenda files into a larger buffer,
> > then parse the buffer and iterate through the headlines with
> > org-element-map?
> >
> >
> > Cheers,
> > Chris
>
> Depending on how automated you need this to be, the `org-map-entries'
> function can be given a scope of 'agenda (see its docstring). You could
> call it with the agenda scope and a matcher for the "laptop" tag -- that
> would at least get you all the headings in all the agenda files with the
> "laptop" tag. Then the actual mapping function could call
> `org-get-heading' on each of the matching headings, and check the text.
>
> In these cases, though, I generally try to find a way to know the
> heading's ID property, and use `org-id-goto'.
>
> Hope that helps,
> Eric
>
>
>

[-- Attachment #2: Type: text/html, Size: 2730 bytes --]

  reply	other threads:[~2014-05-31 16:51 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-05-31 15:07 How to find the headline matching a string Chris Poole
2014-05-31 15:27 ` Eric Abrahamsen
2014-05-31 16:51   ` Chris Poole [this message]
2014-05-31 17:00     ` Igor Sosa Mayor
2014-05-31 17:31       ` Chris Poole
2014-05-31 17:53         ` Igor Sosa Mayor
2014-05-31 20:14     ` Thorsten Jolitz
2014-06-01  4:05       ` Eric Abrahamsen
2014-06-03  9:05         ` Thorsten Jolitz
2014-06-03  9:51           ` Eric Abrahamsen
2014-06-03 20:21             ` Nicolas Goaziou
2014-06-04  1:36               ` Eric Abrahamsen
2014-06-04 11:27                 ` Thorsten Jolitz

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='CAF=P9QAqxvkP=HjEgfu2mXLm8ggWe7-yDA7-TY198aaacr4XBA@mail.gmail.com' \
    --to=lists@chrispoole.com \
    --cc=emacs-orgmode@gnu.org \
    --cc=eric@ericabrahamsen.net \
    /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).