emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Babel results don't respect narrowing
@ 2023-04-28 22:46 Sebastian Wålinder
  2023-05-04  9:45 ` Ihor Radchenko
  0 siblings, 1 reply; 3+ messages in thread
From: Sebastian Wålinder @ 2023-04-28 22:46 UTC (permalink / raw)
  To: emacs-orgmode

Hello!

When org-babel inserts results after evaluating a org-babel block, the current narrowing isn't respected.

Org searches outside of the current narrowing to find a result block, then updates that.

Here's a example to illustrate it:
```
#+CAPTION: 1. Evaluate this to narrow to the elisp block (I put :results raw here so that it's impossible for it to narrow to the first block)
#+BEGIN_SRC emacs-lisp :results raw
(narrow-to-region
 (progn
   (re-search-forward "#\\+BEGIN_SRC emacs-lisp$")
   (beginning-of-line)
   (point))
 (progn
   (re-search-forward "#\\+END_SRC")
   (next-line)
   (point)))
#+END_SRC

#+CAPTION: 2. Evaluate this
#+BEGIN_SRC emacs-lisp
(+ 1 2)
#+END_SRC

#+RESULTS:
2
```

So, if you narrow so that only the elisp (+ 1 2) src block is in view, and then evaluate it, the result that's outside of view will be updated to '3'.

This is an issue primarily with libraries that insert IDs where the results are.

Then, when the library searches for that ID it inserted in the narrowed buffer that doesn't contain the RESULTS tag, it won't be able to find it, as it's outside the view.

I believe the proper behavior to be for org-mode to create a new RESULTS tag, and insert 3 in there.

Thoughts?

Best,
Sebastian


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-06-11 12:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-04-28 22:46 Babel results don't respect narrowing Sebastian Wålinder
2023-05-04  9:45 ` Ihor Radchenko
     [not found]   ` <87r0qib3ri.fsf@nixos.mail-host-address-is-not-set>
2023-06-11 13:01     ` Ihor Radchenko

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).