mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-21 03:52:16 -08:00
This commit introduces support for the semi-popular TOML config-format[1] through a new major-mode: toml-ts-mode. I've read through the full spec[2], and from what I can see this major-mode should provide correct syntax-highligting for every sort of config-declaration which adheres to the specification. Besides that it also adds support for imenu and basic tree-sitter based navigation. [1] https://toml.io/en/ [2] https://toml.io/en/v1.0.0
25 lines
287 B
Bash
Executable file
25 lines
287 B
Bash
Executable file
#!/bin/bash
|
|
|
|
languages=(
|
|
'bash'
|
|
'c'
|
|
'cmake'
|
|
'cpp'
|
|
'css'
|
|
'c-sharp'
|
|
'dockerfile'
|
|
'go'
|
|
'html'
|
|
'javascript'
|
|
'json'
|
|
'python'
|
|
'rust'
|
|
'toml'
|
|
'tsx'
|
|
'typescript'
|
|
)
|
|
|
|
for language in "${languages[@]}"
|
|
do
|
|
./build.sh $language
|
|
done
|