emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Myles English <mylesenglish@gmail.com>
To: Zach Sheffler <zsheffler@gmail.com>
Cc: "emacs-orgmode@gnu.org" <emacs-orgmode@gnu.org>
Subject: Re: Return Top-Level Heading
Date: Mon, 19 Oct 2015 23:24:23 +0100	[thread overview]
Message-ID: <87si568pk8.fsf@gmail.com> (raw)
In-Reply-To: <CABwvrdDhU6GTXDqZNKDFd8onLwf+__v9AfMtcv3rX5N0TCj-Jw@mail.gmail.com>

Hello Zach,

Zach Sheffler writes:

> Is there a way to reference the top-level heading that a lower-level
> heading belongs to? For instance:
>
> * One
> ** Two
> *** Three
>
> If I have "Three", how can I get it to tell me that the top-level is "One"?
> For reference, this is for an org-agenda-prefix.

Perhaps this:

(defun findTop()
    (interactive)
    (let* ((tree (org-element-parse-buffer))
           (curs_pos (point))
           (up_tree (org-element-map tree 'headline
                      (lambda (hl)
                        (and (> curs_pos (org-element-property :begin hl))
                             (= (org-element-property :level hl) 1)
                             (org-element-property :raw-value hl) ))))
           (local_up_tree (last up_tree)))
      local_up_tree))

Myles

      reply	other threads:[~2015-10-19 22:24 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-10-13 15:35 Return Top-Level Heading Zach Sheffler
2015-10-19 22:24 ` Myles English [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=87si568pk8.fsf@gmail.com \
    --to=mylesenglish@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    --cc=zsheffler@gmail.com \
    /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).