Add "julia" to `org-insert-source-block-defaults'

This commit is contained in:
Gerard Vermeulen 2024-02-28 16:22:44 +01:00
parent 0d1ec24bf9
commit 820db5e35d
1 changed files with 6 additions and 4 deletions

View File

@ -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)