From 820db5e35d42992df101fd1bac1a6865eb402075 Mon Sep 17 00:00:00 2001 From: Gerard Vermeulen Date: Wed, 28 Feb 2024 16:22:44 +0100 Subject: [PATCH] Add "julia" to `org-insert-source-block-defaults' --- README.org | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.org b/README.org index 2da350b..0c6d62f 100644 --- a/README.org +++ b/README.org @@ -2520,10 +2520,12 @@ When called twice, replace the previously inserted \\(\\) by one $." (with-eval-after-load 'emacs ;; Stolen from `org-insert-structure-template'. ;; Note: `org-tempo' does not require `tempo' at all. - (defcustom org-insert-source-block-defaults '("emacs-lisp -n :results silent" - "latex -n" - "org -n" - "python -i -n :results silent") + (defcustom org-insert-source-block-defaults + '("emacs-lisp -n :results silent" + "julia -n :results silent" + "latex -n" + "org -n" + "python -i -n :results silent") "Default values for `org-insert-source-block'." :group 'org)