0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-08-25 22:32:51 +00:00

org.el: Sync org-babel-load-languages with Babel files in Org

* lisp/org.el (org-babel-load-languages): Sync with Babel files

(org-babel-load-languages): Synchronize the defcustom with the rest of
the code base, group languages by Org Babel file, and spell languages
using camel case (the current fashion).

Link: https://list.orgmode.org/712f2ef5b4edb2d9b565f6467e582030@posteo.net/
This commit is contained in:
Gerard Vermeulen 2023-02-01 15:03:43 +01:00 committed by Ihor Radchenko
parent 911d6a1027
commit e8010e8a91
No known key found for this signature in database
GPG key ID: 6470762A7DA11D8B

View file

@ -297,47 +297,49 @@ default, only Emacs Lisp is loaded, since it has no specific
requirement." requirement."
:group 'org-babel :group 'org-babel
:set 'org-babel-do-load-languages :set 'org-babel-do-load-languages
:version "24.1" :package-version '(Org . "9.6")
:type '(alist :tag "Babel Languages" :type '(alist :tag "Babel Languages"
:key-type :key-type
(choice (choice
(const :tag "Awk" awk) (const :tag "Awk" awk)
(const :tag "C" C) (const :tag "C, D, C++, and cpp" C)
(const :tag "R" R) (const :tag "R" R)
(const :tag "Calc" calc) (const :tag "Calc" calc)
(const :tag "Clojure" clojure) (const :tag "Clojure and ClojureScript" clojure)
(const :tag "CSS" css) (const :tag "CSS" css)
(const :tag "Ditaa" ditaa) (const :tag "Ditaa" ditaa)
(const :tag "Dot" dot) (const :tag "Dot" dot)
(const :tag "Emacs Lisp" emacs-lisp) (const :tag "Emacs Lisp" emacs-lisp)
(const :tag "Eshell" eshell)
(const :tag "Forth" forth) (const :tag "Forth" forth)
(const :tag "Fortran" fortran) (const :tag "Fortran" fortran)
(const :tag "Gnuplot" gnuplot) (const :tag "GnuPlot" gnuplot)
(const :tag "Groovy" groovy)
(const :tag "Haskell" haskell) (const :tag "Haskell" haskell)
(const :tag "Java" java) (const :tag "Java" java)
(const :tag "Javascript" js) (const :tag "JavaScript" js)
(const :tag "Julia" julia)
(const :tag "LaTeX" latex) (const :tag "LaTeX" latex)
(const :tag "Lilypond" lilypond) (const :tag "LilyPond" lilypond)
(const :tag "Lisp" lisp) (const :tag "Lisp" lisp)
(const :tag "Lua" lua)
(const :tag "Makefile" makefile) (const :tag "Makefile" makefile)
(const :tag "Maxima" maxima) (const :tag "Maxima" maxima)
(const :tag "Matlab" matlab) (const :tag "OCaml" ocaml)
(const :tag "Ocaml" ocaml) (const :tag "Octave and MatLab" octave)
(const :tag "Octave" octave)
(const :tag "Org" org) (const :tag "Org" org)
(const :tag "Perl" perl) (const :tag "Perl" perl)
(const :tag "Pico Lisp" picolisp) (const :tag "Processing" processing)
(const :tag "PlantUML" plantuml) (const :tag "PlantUML" plantuml)
(const :tag "Python" python) (const :tag "Python" python)
(const :tag "Ruby" ruby) (const :tag "Ruby" ruby)
(const :tag "Sass" sass) (const :tag "Sass" sass)
(const :tag "Scala" scala)
(const :tag "Scheme" scheme) (const :tag "Scheme" scheme)
(const :tag "Screen" screen) (const :tag "Screen" screen)
(const :tag "Sed" sed)
(const :tag "Shell Script" shell) (const :tag "Shell Script" shell)
(const :tag "Sql" sql) (const :tag "Sql" sql)
(const :tag "Sqlite" sqlite) (const :tag "Sqlite" sqlite))
(const :tag "Stan" stan))
:value-type (boolean :tag "Activate" :value t))) :value-type (boolean :tag "Activate" :value t)))
;;;; Customization variables ;;;; Customization variables