|
From: | Matt |
Subject: | [BUG] ob-shell async incorrect table and value results |
Date: | Wed, 06 Mar 2024 21:51:57 +0100 |
User-agent: | Zoho Mail |
#+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 *test* :results value echo "hello world" #+end_src #+RESULTS: : 0 #+name: async value #+begin_src sh :session *test* :results value :async t echo "hello world" #+end_src #+RESULTS: : hello world : 0 -- Matt Trzcinski Emacs Org contributor (ob-shell) Learn more about Org mode at https://orgmode.org Support Org development at https://liberapay.com/org-mode
[Prev in Thread] | Current Thread | [Next in Thread] |