mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 19:17:02 -04:00
fix(wing): update to new repo (#6446)
This commit is contained in:
parent
d2f4c78303
commit
40e8c92f99
5 changed files with 10 additions and 7 deletions
|
|
@ -437,7 +437,7 @@ We are looking for maintainers to add more parsers and to write query files for
|
|||
- [x] [vue](https://github.com/tree-sitter-grammars/tree-sitter-vue) (maintained by @WhyNotHugo, @lucario387)
|
||||
- [x] [wgsl](https://github.com/szebniok/tree-sitter-wgsl) (maintained by @szebniok)
|
||||
- [x] [wgsl_bevy](https://github.com/theHamsta/tree-sitter-wgsl-bevy) (maintained by @theHamsta)
|
||||
- [x] [wing](https://github.com/winglang/wing) (experimental, maintained by @gshpychka, @MarkMcCulloh)
|
||||
- [x] [wing](https://github.com/winglang/tree-sitter-wing) (maintained by @gshpychka, @MarkMcCulloh)
|
||||
- [x] [xcompose](https://github.com/ObserverOfTime/tree-sitter-xcompose) (maintained by @ObserverOfTime)
|
||||
- [x] [xml](https://github.com/tree-sitter-grammars/tree-sitter-xml) (maintained by @ObserverOfTime)
|
||||
- [x] [yaml](https://github.com/tree-sitter-grammars/tree-sitter-yaml) (maintained by @amaanq)
|
||||
|
|
|
|||
|
|
@ -792,7 +792,7 @@
|
|||
"revision": "f5980f534ee64256b1e64b0a42e2864d91154a5d"
|
||||
},
|
||||
"wing": {
|
||||
"revision": "65d7da7211ef5d40d22aa9dcfb59aa7a757fcdeb"
|
||||
"revision": "5b6c2a5818a602557778d1bfc265d016cafa0712"
|
||||
},
|
||||
"xcompose": {
|
||||
"revision": "2383cc69a2c42cfade41c7cb971fb3862bec6df1"
|
||||
|
|
|
|||
|
|
@ -2297,13 +2297,10 @@ list.wgsl_bevy = {
|
|||
|
||||
list.wing = {
|
||||
install_info = {
|
||||
url = "https://github.com/winglang/wing",
|
||||
url = "https://github.com/winglang/tree-sitter-wing",
|
||||
files = { "src/parser.c", "src/scanner.c" },
|
||||
location = "libs/tree-sitter-wing",
|
||||
requires_generate_from_grammar = true,
|
||||
},
|
||||
maintainers = { "@gshpychka", "@MarkMcCulloh" },
|
||||
experimental = true,
|
||||
}
|
||||
|
||||
list.xcompose = {
|
||||
|
|
|
|||
|
|
@ -95,4 +95,10 @@
|
|||
"else"
|
||||
] @keyword.conditional
|
||||
|
||||
[
|
||||
"pub"
|
||||
"protected"
|
||||
"internal"
|
||||
] @keyword.modifier
|
||||
|
||||
"return" @keyword.return
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ bring cloud;
|
|||
|
||||
class Foo {
|
||||
// <- @keyword
|
||||
// ^ @variable
|
||||
// ^ @type
|
||||
// ^ @punctuation.bracket
|
||||
name: str;
|
||||
//^ @variable.member
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue