mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 18:40:39 -08:00
* admin/notes/tree-sitter/build-module/batch.sh: * admin/notes/tree-sitter/build-module/build.sh: Add yaml support. * etc/NEWS: Mention it. * lisp/textmodes/yaml-ts-mode.el: New major mode with tree-sitter support. * lisp/progmodes/eglot.el (eglot-server-programs): Add it.
27 lines
311 B
Bash
Executable file
27 lines
311 B
Bash
Executable file
#!/bin/bash
|
|
|
|
languages=(
|
|
'bash'
|
|
'c'
|
|
'cmake'
|
|
'cpp'
|
|
'css'
|
|
'c-sharp'
|
|
'dockerfile'
|
|
'go'
|
|
'go-mod'
|
|
'html'
|
|
'javascript'
|
|
'json'
|
|
'python'
|
|
'rust'
|
|
'toml'
|
|
'tsx'
|
|
'typescript'
|
|
'yaml'
|
|
)
|
|
|
|
for language in "${languages[@]}"
|
|
do
|
|
./build.sh $language
|
|
done
|