mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 11:06:54 -04:00
feat(vento)!: update parser and queries
Breaking change: `(keyword)` node removed. Also mark as unmaintained (Copilot-maintained)
This commit is contained in:
parent
45a07f869b
commit
9f2dad22ef
3 changed files with 24 additions and 5 deletions
2
SUPPORTED_LANGUAGES.md
generated
2
SUPPORTED_LANGUAGES.md
generated
|
|
@ -316,7 +316,7 @@ jsx (queries only)[^jsx] | unstable | `HFIJ ` | @steelsojka
|
||||||
[uxntal](https://github.com/tree-sitter-grammars/tree-sitter-uxntal) | unstable | `HFIJL` | @amaanq
|
[uxntal](https://github.com/tree-sitter-grammars/tree-sitter-uxntal) | unstable | `HFIJL` | @amaanq
|
||||||
[v](https://github.com/vlang/v-analyzer) | unstable | `HFIJL` | @kkharji, @amaanq
|
[v](https://github.com/vlang/v-analyzer) | unstable | `HFIJL` | @kkharji, @amaanq
|
||||||
[vala](https://github.com/vala-lang/tree-sitter-vala) | unstable | `HF J ` | @Prince781
|
[vala](https://github.com/vala-lang/tree-sitter-vala) | unstable | `HF J ` | @Prince781
|
||||||
[vento](https://github.com/ventojs/tree-sitter-vento) | unstable | `H J ` | @wrapperup, @oscarotero
|
[vento](https://github.com/ventojs/tree-sitter-vento) | unmaintained | `H J ` |
|
||||||
[vhdl](https://github.com/jpt13653903/tree-sitter-vhdl) | unstable | `HF J ` | @jpt13653903
|
[vhdl](https://github.com/jpt13653903/tree-sitter-vhdl) | unstable | `HF J ` | @jpt13653903
|
||||||
[vhs](https://github.com/charmbracelet/tree-sitter-vhs) | unstable | `H J ` | @caarlos0
|
[vhs](https://github.com/charmbracelet/tree-sitter-vhs) | unstable | `H J ` | @caarlos0
|
||||||
[vim](https://github.com/tree-sitter-grammars/tree-sitter-vim) | unstable | `HF JL` | @clason
|
[vim](https://github.com/tree-sitter-grammars/tree-sitter-vim) | unstable | `HF JL` | @clason
|
||||||
|
|
|
||||||
|
|
@ -2510,11 +2510,10 @@ return {
|
||||||
},
|
},
|
||||||
vento = {
|
vento = {
|
||||||
install_info = {
|
install_info = {
|
||||||
revision = '3b32474bc29584ea214e4e84b47102408263fe0e',
|
revision = 'edd6596d4b0f392b87fc345dc26d84a6c32f7059',
|
||||||
url = 'https://github.com/ventojs/tree-sitter-vento',
|
url = 'https://github.com/ventojs/tree-sitter-vento',
|
||||||
},
|
},
|
||||||
maintainers = { '@wrapperup', '@oscarotero' },
|
tier = 3,
|
||||||
tier = 2,
|
|
||||||
},
|
},
|
||||||
vhdl = {
|
vhdl = {
|
||||||
install_info = {
|
install_info = {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,26 @@
|
||||||
(comment) @comment @spell
|
(comment) @comment @spell
|
||||||
|
|
||||||
(keyword) @keyword
|
[
|
||||||
|
"if"
|
||||||
|
"/if"
|
||||||
|
"else"
|
||||||
|
"for"
|
||||||
|
"/for"
|
||||||
|
"layout"
|
||||||
|
"/layout"
|
||||||
|
"set"
|
||||||
|
"/set"
|
||||||
|
"import"
|
||||||
|
"export"
|
||||||
|
"/export"
|
||||||
|
"include"
|
||||||
|
"function"
|
||||||
|
"/function"
|
||||||
|
"fragment"
|
||||||
|
"/fragment"
|
||||||
|
"of"
|
||||||
|
"async"
|
||||||
|
] @keyword
|
||||||
|
|
||||||
(tag
|
(tag
|
||||||
[
|
[
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue