mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 11:06:54 -04:00
feat(robot)!: update parser and queries
Breaking change: replaced `(variable_definition)` by `(scalar_variable)`, `(list_variable)` and `(dictionary_variable)`. Also mark queries as unmaintained.
This commit is contained in:
parent
544320a9cf
commit
1970f0d3bb
3 changed files with 10 additions and 5 deletions
2
SUPPORTED_LANGUAGES.md
generated
2
SUPPORTED_LANGUAGES.md
generated
|
|
@ -245,7 +245,7 @@ jsx (queries only)[^jsx] | unstable | `HFIJ ` | @steelsojka
|
||||||
[rescript](https://github.com/rescript-lang/tree-sitter-rescript) | unstable | `HFIJL` | @ribru17
|
[rescript](https://github.com/rescript-lang/tree-sitter-rescript) | unstable | `HFIJL` | @ribru17
|
||||||
[rifleconf](https://github.com/purarue/tree-sitter-rifleconf) | unstable | `H J ` | @purarue
|
[rifleconf](https://github.com/purarue/tree-sitter-rifleconf) | unstable | `H J ` | @purarue
|
||||||
[rnoweb](https://github.com/bamonroe/tree-sitter-rnoweb) | unstable | `HF J ` | @bamonroe
|
[rnoweb](https://github.com/bamonroe/tree-sitter-rnoweb) | unstable | `HF J ` | @bamonroe
|
||||||
[robot](https://github.com/Hubro/tree-sitter-robot) | stable | `HFIJ ` | @Hubro
|
[robot](https://github.com/Hubro/tree-sitter-robot) | unmaintained | `HFIJ ` |
|
||||||
[robots_txt](https://github.com/opa-oz/tree-sitter-robots-txt) | unstable | `H J ` | @opa-oz
|
[robots_txt](https://github.com/opa-oz/tree-sitter-robots-txt) | unstable | `H J ` | @opa-oz
|
||||||
[roc](https://github.com/faldor20/tree-sitter-roc) | unmaintained | `H IJL` |
|
[roc](https://github.com/faldor20/tree-sitter-roc) | unmaintained | `H IJL` |
|
||||||
[ron](https://github.com/tree-sitter-grammars/tree-sitter-ron) | unstable | `HFIJL` | @amaanq
|
[ron](https://github.com/tree-sitter-grammars/tree-sitter-ron) | unstable | `HFIJL` | @amaanq
|
||||||
|
|
|
||||||
|
|
@ -1922,11 +1922,10 @@ return {
|
||||||
},
|
},
|
||||||
robot = {
|
robot = {
|
||||||
install_info = {
|
install_info = {
|
||||||
revision = 'v1.2.0',
|
revision = 'v1.3.0',
|
||||||
url = 'https://github.com/Hubro/tree-sitter-robot',
|
url = 'https://github.com/Hubro/tree-sitter-robot',
|
||||||
},
|
},
|
||||||
maintainers = { '@Hubro' },
|
tier = 3,
|
||||||
tier = 1,
|
|
||||||
},
|
},
|
||||||
robots_txt = {
|
robots_txt = {
|
||||||
install_info = {
|
install_info = {
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,13 @@
|
||||||
(test_case_setting)
|
(test_case_setting)
|
||||||
] @keyword
|
] @keyword
|
||||||
|
|
||||||
(variable_definition
|
(scalar_variable
|
||||||
|
(variable_name) @variable)
|
||||||
|
|
||||||
|
(list_variable
|
||||||
|
(variable_name) @variable)
|
||||||
|
|
||||||
|
(dictionary_variable
|
||||||
(variable_name) @variable)
|
(variable_name) @variable)
|
||||||
|
|
||||||
(keyword_definition
|
(keyword_definition
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue