Added scheme support

This commit is contained in:
6cdh 2022-04-06 21:04:19 +08:00 committed by Stephan Seitz
parent acd01551a3
commit 46dc8b8f40
2 changed files with 9 additions and 0 deletions

View file

@ -243,6 +243,7 @@ We are looking for maintainers to add more parsers and to write query files for
- [x] [ruby](https://github.com/tree-sitter/tree-sitter-ruby) (maintained by @TravonteD)
- [x] [rust](https://github.com/tree-sitter/tree-sitter-rust) (maintained by @vigoux)
- [x] [scala](https://github.com/tree-sitter/tree-sitter-scala) (maintained by @stevanmilic)
- [x] [scheme](https://github.com/6cdh/tree-sitter-scheme) (maintained by @6cdh)
- [x] [scss](https://github.com/serenadeai/tree-sitter-scss) (maintained by @elianiva)
- [x] [slint](https://github.com/jrmoulton/tree-sitter-slint) (experimental, maintained by @jrmoulton)
- [x] [solidity](https://github.com/YongJieYongJie/tree-sitter-solidity) (maintained by @YongJieYongJie)

View file

@ -43,6 +43,14 @@ local list = setmetatable({}, {
end,
})
list.scheme = {
install_info = {
url = "https://github.com/6cdh/tree-sitter-scheme",
files = { "src/parser.c" },
},
maintainers = { "@6cdh" },
}
list.javascript = {
install_info = {
url = "https://github.com/tree-sitter/tree-sitter-javascript",