1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-18 00:50:44 -08:00
emacs/admin/notes/tree-sitter/build-module/batch.sh
Randy Taylor ca67d988d8
Add cmake-ts-mode
* admin/notes/tree-sitter/build-module/batch.sh:
* admin/notes/tree-sitter/build-module/build.sh: Add cmake support.
* etc/NEWS: Mention it.
* lisp/progmodes/cmake-ts-mode.el: New major mode with
tree-sitter support.
* lisp/progmodes/eglot.el (eglot-server-programs): Add it.
2022-12-12 15:08:54 -08:00

23 lines
265 B
Bash
Executable file

#!/bin/bash
languages=(
'c'
'cmake'
'cpp'
'css'
'c-sharp'
'dockerfile'
'go'
'html'
'javascript'
'json'
'python'
'rust'
'typescript'
'tsx'
)
for language in "${languages[@]}"
do
./build.sh $language
done