mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-06 06:20:55 -08:00
* lisp/progmodes/lua-ts-mode.el: * test/lisp/progmodes/lua-ts-mode-resources/indent.erts: * test/lisp/progmodes/lua-ts-mode-tests.el: New files. * etc/NEWS: Mention the new mode. * lisp/progmodes/eglot.el (eglot-server-programs): * lisp/progmodes/hideshow.el (hs-special-modes-alist): Support 'lua-ts-mode'. * admin/notes/tree-sitter/build-module/batch.sh: * admin/notes/tree-sitter/build-module/build.sh: Add Lua. * test/infra/Dockerfile.emba: * test/infra/test-jobs.yml: Include lua-ts-mode tests.
31 lines
356 B
Bash
Executable file
31 lines
356 B
Bash
Executable file
#!/bin/bash
|
|
|
|
languages=(
|
|
'bash'
|
|
'c'
|
|
'cmake'
|
|
'cpp'
|
|
'css'
|
|
'c-sharp'
|
|
'dockerfile'
|
|
'elixir'
|
|
'go'
|
|
'go-mod'
|
|
'heex'
|
|
'html'
|
|
'java'
|
|
'javascript'
|
|
'json'
|
|
'lua'
|
|
'python'
|
|
'rust'
|
|
'toml'
|
|
'tsx'
|
|
'typescript'
|
|
'yaml'
|
|
)
|
|
|
|
for language in "${languages[@]}"
|
|
do
|
|
./build.sh $language
|
|
done
|