From 76c3b54a0b108f84fe25e74811fc8601deb6ee37 Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Tue, 29 Oct 2019 10:47:01 -0400 Subject: [PATCH] Enable async source block execution in Org Mode --- emacs/init.org | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/emacs/init.org b/emacs/init.org index 7d05094..903caa5 100755 --- a/emacs/init.org +++ b/emacs/init.org @@ -995,6 +995,12 @@ Display inline images after executing a source block: (org-redisplay-inline-images))) #+END_SRC +Enable async source block execution. Note: this execute the contents of the source block in a separate Emacs process, so blocks that rely on anything defined in init.org or the current Emacs process won't work as expected. +#+BEGIN_SRC emacs-lisp + (use-package ob-async + :quelpa (ob-async :fetcher github :repo "astahlman/ob-async")) +#+END_SRC + ** Images #+BEGIN_SRC emacs-lisp (setq org-image-actual-width '(1000))