mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-17 02:40:09 -04:00
feat(roc): switch to active upstream
This commit is contained in:
parent
921763b23d
commit
47994d7e89
5 changed files with 14 additions and 27 deletions
|
|
@ -376,7 +376,7 @@ We are looking for maintainers to add more parsers and to write query files for
|
||||||
- [x] [pip requirements](https://github.com/ObserverOfTime/tree-sitter-requirements) (maintained by @ObserverOfTime)
|
- [x] [pip requirements](https://github.com/ObserverOfTime/tree-sitter-requirements) (maintained by @ObserverOfTime)
|
||||||
- [x] [rnoweb](https://github.com/bamonroe/tree-sitter-rnoweb) (maintained by @bamonroe)
|
- [x] [rnoweb](https://github.com/bamonroe/tree-sitter-rnoweb) (maintained by @bamonroe)
|
||||||
- [x] [robot](https://github.com/Hubro/tree-sitter-robot) (maintained by @Hubro)
|
- [x] [robot](https://github.com/Hubro/tree-sitter-robot) (maintained by @Hubro)
|
||||||
- [x] [roc](https://github.com/nat-418/tree-sitter-roc) (maintained by @nat-418)
|
- [x] [roc](https://github.com/faldor20/tree-sitter-roc) (maintained by @nat-418)
|
||||||
- [x] [ron](https://github.com/amaanq/tree-sitter-ron) (maintained by @amaanq)
|
- [x] [ron](https://github.com/amaanq/tree-sitter-ron) (maintained by @amaanq)
|
||||||
- [x] [rst](https://github.com/stsewd/tree-sitter-rst) (maintained by @stsewd)
|
- [x] [rst](https://github.com/stsewd/tree-sitter-rst) (maintained by @stsewd)
|
||||||
- [x] [ruby](https://github.com/tree-sitter/tree-sitter-ruby) (maintained by @TravonteD)
|
- [x] [ruby](https://github.com/tree-sitter/tree-sitter-ruby) (maintained by @TravonteD)
|
||||||
|
|
|
||||||
|
|
@ -609,7 +609,7 @@
|
||||||
"revision": "322e4cc65754d2b3fdef4f2f8a71e0762e3d13af"
|
"revision": "322e4cc65754d2b3fdef4f2f8a71e0762e3d13af"
|
||||||
},
|
},
|
||||||
"roc": {
|
"roc": {
|
||||||
"revision": "7df2c0892e62efb81a7504d9799d4e0d0443d241"
|
"revision": "df46a85abda9f948d38f5d4e3684cec49c42fef2"
|
||||||
},
|
},
|
||||||
"ron": {
|
"ron": {
|
||||||
"revision": "78938553b93075e638035f624973083451b29055"
|
"revision": "78938553b93075e638035f624973083451b29055"
|
||||||
|
|
|
||||||
|
|
@ -1782,7 +1782,7 @@ list.robot = {
|
||||||
|
|
||||||
list.roc = {
|
list.roc = {
|
||||||
install_info = {
|
install_info = {
|
||||||
url = "https://github.com/nat-418/tree-sitter-roc",
|
url = "https://github.com/faldor20/tree-sitter-roc",
|
||||||
files = { "src/parser.c", "src/scanner.c" },
|
files = { "src/parser.c", "src/scanner.c" },
|
||||||
},
|
},
|
||||||
maintainers = { "@nat-418" },
|
maintainers = { "@nat-418" },
|
||||||
|
|
|
||||||
|
|
@ -79,29 +79,12 @@
|
||||||
] @keyword
|
] @keyword
|
||||||
|
|
||||||
;----headers-----
|
;----headers-----
|
||||||
(interface_header
|
|
||||||
(name) @type.definition)
|
|
||||||
|
|
||||||
(imports
|
|
||||||
(imports_entry
|
|
||||||
(module) @module))
|
|
||||||
|
|
||||||
(packages
|
|
||||||
(record_pattern
|
|
||||||
(record_field_pattern
|
|
||||||
(field_name) @module)))
|
|
||||||
|
|
||||||
(app_name) @string.special
|
|
||||||
|
|
||||||
(import_path) @string.special.path
|
|
||||||
|
|
||||||
[
|
[
|
||||||
"app"
|
"app"
|
||||||
"packages"
|
|
||||||
"provides"
|
|
||||||
"interface"
|
|
||||||
"exposes"
|
|
||||||
"expect"
|
"expect"
|
||||||
|
"module"
|
||||||
|
"package"
|
||||||
|
"import"
|
||||||
] @keyword
|
] @keyword
|
||||||
|
|
||||||
[
|
[
|
||||||
|
|
@ -184,6 +167,9 @@
|
||||||
(float)
|
(float)
|
||||||
] @number.float
|
] @number.float
|
||||||
|
|
||||||
(string) @string
|
[
|
||||||
|
(string)
|
||||||
|
(multiline_string)
|
||||||
|
] @string
|
||||||
|
|
||||||
(char) @character
|
(char) @character
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,10 @@
|
||||||
(exposes_list
|
(exposes_list
|
||||||
(ident) @local.reference)
|
(ident) @local.reference)
|
||||||
|
|
||||||
|
(import_expr
|
||||||
|
(as)
|
||||||
|
(module) @local.definition)
|
||||||
|
|
||||||
(opaque_type_def
|
(opaque_type_def
|
||||||
(apply_type
|
(apply_type
|
||||||
(concrete_type) @local.definition.type))
|
(concrete_type) @local.definition.type))
|
||||||
|
|
@ -31,9 +35,6 @@
|
||||||
(identifier_pattern
|
(identifier_pattern
|
||||||
(identifier) @local.definition)
|
(identifier) @local.definition)
|
||||||
|
|
||||||
(exposes
|
|
||||||
(ident) @local.reference)
|
|
||||||
|
|
||||||
(identifier) @local.reference
|
(identifier) @local.reference
|
||||||
|
|
||||||
(tag_expr
|
(tag_expr
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue