mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-03-12 09:51:05 -07:00
* admin/notes/tree-sitter/build-module/batch.sh: * admin/notes/tree-sitter/build-module/build.sh: Add go-mod support. * etc/NEWS: Mention them. * lisp/progmodes/eglot.el (eglot-server-programs): Add them. * lisp/progmodes/go-ts-mode.el: New major modes with tree-sitter support.
26 lines
300 B
Bash
Executable file
26 lines
300 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'
|
|
)
|
|
|
|
for language in "${languages[@]}"
|
|
do
|
|
./build.sh $language
|
|
done
|