Re: [BUG] ob-shell async incorrect table and value results

2024-03-08 Thread Matt
On Fri, 08 Mar 2024 10:25:09 +0100 Ihor Radchenko wrote --- > Confirmed. > This is because `ob-shell-async-chunk-callback' never returns a list. > > In `org-babel-sh-evaluate', there is a part that is responsible for > detecting the result type: > > (when (and results

Re: [BUG] ob-shell async incorrect table and value results

2024-03-08 Thread Ihor Radchenko
Matt writes: > #+name: sync table > #+begin_src sh :session *test* :results table > echo "hello world" > #+end_src > > #+RESULTS: > | hello world | > > #+name: async table > #+begin_src sh :session *test* :results table :async t > echo "hello world" > #+end_src > > #+RESULTS: > : hello world

[BUG] ob-shell async incorrect table and value results

2024-03-06 Thread Matt
#+name: sync table #+begin_src sh :session *test* :results table echo "hello world" #+end_src #+RESULTS: | hello world | #+name: async table #+begin_src sh :session *test* :results table :async t echo "hello world" #+end_src #+RESULTS: : hello world #+name: sync value #+begin_src sh :session