From 70e85b9419cc623f8cfa41bc01d513c2769ead56 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Mon, 30 Dec 2024 13:34:46 +0100 Subject: [PATCH] Show value output of Org source blocks by default This is a sensible default for ELisp blocks, so let's use that. Already existing blocks that depend on the old default need to be updated, though. --- init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.el b/init.el index a9307a2..e81f2cb 100644 --- a/init.el +++ b/init.el @@ -1211,7 +1211,7 @@ accordingly." (use-package ob-core :init (setq org-export-use-babel t org-babel-default-header-args '((:session . "none") - (:results . "output code replace") + (:results . "value drawer replace") (:exports . "both") (:cache . "no") (:noweb . "no")