mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 19:17:02 -04:00
Added scheme support
This commit is contained in:
parent
acd01551a3
commit
46dc8b8f40
2 changed files with 9 additions and 0 deletions
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue