* How to get a block’s contents by name
@ 2020-11-27 23:02 George Mauer
2020-11-28 2:22 ` Kyle Meyer
0 siblings, 1 reply; 4+ messages in thread
From: George Mauer @ 2020-11-27 23:02 UTC (permalink / raw)
To: emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 279 bytes --]
I'm trying to figure out how I could fetch the contents of another block by
name from an elisp script
I've seen `org-sbe` but I just want to get the block contents, (ideally
with noweb and vars filled in - just as it would be tangled if we were to
tangle it)
How do I do that?
[-- Attachment #2: Type: text/html, Size: 412 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: How to get a block’s contents by name
2020-11-27 23:02 How to get a block’s contents by name George Mauer
@ 2020-11-28 2:22 ` Kyle Meyer
2020-11-28 3:46 ` George Mauer
0 siblings, 1 reply; 4+ messages in thread
From: Kyle Meyer @ 2020-11-28 2:22 UTC (permalink / raw)
To: gmauer; +Cc: emacs-orgmode
George Mauer writes:
> I'm trying to figure out how I could fetch the contents of another block by
> name from an elisp script
>
> I've seen `org-sbe` but I just want to get the block contents, (ideally
> with noweb and vars filled in - just as it would be tangled if we were to
> tangle it)
>
> How do I do that?
How about something like this?
(save-excursion
(goto-char (org-babel-find-named-block "b"))
(org-babel-expand-src-block))
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: How to get a block’s contents by name
2020-11-28 2:22 ` Kyle Meyer
@ 2020-11-28 3:46 ` George Mauer
2020-11-28 14:13 ` John Kitchin
0 siblings, 1 reply; 4+ messages in thread
From: George Mauer @ 2020-11-28 3:46 UTC (permalink / raw)
To: Kyle Meyer; +Cc: emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 641 bytes --]
Well that pains me on a software-engineer-aip-design level but that works!
Thanks a lot.
On Fri, Nov 27, 2020 at 8:22 PM Kyle Meyer <kyle@kyleam.com> wrote:
> George Mauer writes:
>
> > I'm trying to figure out how I could fetch the contents of another block
> by
> > name from an elisp script
> >
> > I've seen `org-sbe` but I just want to get the block contents, (ideally
> > with noweb and vars filled in - just as it would be tangled if we were to
> > tangle it)
> >
> > How do I do that?
>
> How about something like this?
>
> (save-excursion
> (goto-char (org-babel-find-named-block "b"))
> (org-babel-expand-src-block))
>
[-- Attachment #2: Type: text/html, Size: 1052 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: How to get a block’s contents by name
2020-11-28 3:46 ` George Mauer
@ 2020-11-28 14:13 ` John Kitchin
0 siblings, 0 replies; 4+ messages in thread
From: John Kitchin @ 2020-11-28 14:13 UTC (permalink / raw)
To: gmauer; +Cc: Kyle Meyer, emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 1657 bytes --]
I would do this:
#+BEGIN_SRC emacs-lisp
(defun org-get-named-block-contents (name)
(save-excursion
(goto-char (point-min))
(let ((regexp (org-babel-named-src-block-regexp-for-name name)))
(or (and (looking-at regexp)
(progn (goto-char (match-beginning 1))
(line-beginning-position)))
(ignore-errors (org-next-block 1 nil regexp)))
(org-babel-expand-src-block))))
#+END_SRC
This is basically what org-babel-find-named-block does, with the
(org-babel-expand-src-block) return instead of the position. It avoids the
double save-excursion.
This is probably faster than any alternative that involves parsing the
buffer, especially for large buffers.
John
-----------------------------------
Professor John Kitchin
Doherty Hall A207F
Department of Chemical Engineering
Carnegie Mellon University
Pittsburgh, PA 15213
412-268-7803
@johnkitchin
http://kitchingroup.cheme.cmu.edu
On Fri, Nov 27, 2020 at 10:47 PM George Mauer <gmauer@gmail.com> wrote:
> Well that pains me on a software-engineer-aip-design level but that works!
> Thanks a lot.
>
> On Fri, Nov 27, 2020 at 8:22 PM Kyle Meyer <kyle@kyleam.com> wrote:
>
>> George Mauer writes:
>>
>> > I'm trying to figure out how I could fetch the contents of another
>> block by
>> > name from an elisp script
>> >
>> > I've seen `org-sbe` but I just want to get the block contents, (ideally
>> > with noweb and vars filled in - just as it would be tangled if we were
>> to
>> > tangle it)
>> >
>> > How do I do that?
>>
>> How about something like this?
>>
>> (save-excursion
>> (goto-char (org-babel-find-named-block "b"))
>> (org-babel-expand-src-block))
>>
>
[-- Attachment #2: Type: text/html, Size: 2694 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2020-11-28 14:13 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-11-27 23:02 How to get a block’s contents by name George Mauer
2020-11-28 2:22 ` Kyle Meyer
2020-11-28 3:46 ` George Mauer
2020-11-28 14:13 ` John Kitchin
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).