2025-08-30 20:39:35 -07:00
|
|
|
(full_ident
|
|
|
|
|
(identifier) @variable)
|
|
|
|
|
|
|
|
|
|
(full_ident
|
|
|
|
|
(identifier)
|
|
|
|
|
(identifier) @variable.member)
|
|
|
|
|
|
|
|
|
|
(field
|
|
|
|
|
(identifier) @property)
|
|
|
|
|
|
|
|
|
|
(field_option
|
|
|
|
|
(identifier) @property)
|
|
|
|
|
|
2026-03-06 11:12:43 -05:00
|
|
|
(enum_value_option
|
|
|
|
|
(identifier) @property)
|
|
|
|
|
|
2025-08-30 20:39:35 -07:00
|
|
|
(block_lit
|
|
|
|
|
(identifier) @property)
|
|
|
|
|
|
2022-04-26 15:36:26 -04:00
|
|
|
[
|
2023-08-02 11:54:53 -06:00
|
|
|
"extend"
|
|
|
|
|
"extensions"
|
2022-04-26 15:36:26 -04:00
|
|
|
"oneof"
|
2023-08-02 11:54:53 -06:00
|
|
|
"option"
|
2022-04-26 15:36:26 -04:00
|
|
|
"reserved"
|
2023-08-02 11:54:53 -06:00
|
|
|
"syntax"
|
2026-03-06 11:12:43 -05:00
|
|
|
"edition"
|
2022-04-26 15:36:26 -04:00
|
|
|
"to"
|
2026-03-06 11:12:43 -05:00
|
|
|
"max"
|
2022-04-26 15:36:26 -04:00
|
|
|
] @keyword
|
|
|
|
|
|
2024-04-23 12:23:15 -07:00
|
|
|
[
|
|
|
|
|
"enum"
|
2026-03-06 11:12:43 -05:00
|
|
|
"group"
|
2024-04-23 12:23:15 -07:00
|
|
|
"service"
|
|
|
|
|
"message"
|
2026-03-06 11:12:43 -05:00
|
|
|
"map"
|
2024-04-23 12:23:15 -07:00
|
|
|
] @keyword.type
|
|
|
|
|
|
2024-01-06 15:05:50 +09:00
|
|
|
"rpc" @keyword.function
|
2023-08-02 11:54:53 -06:00
|
|
|
|
2024-01-06 15:05:50 +09:00
|
|
|
"returns" @keyword.return
|
2023-08-02 11:54:53 -06:00
|
|
|
|
|
|
|
|
[
|
2026-03-06 11:12:43 -05:00
|
|
|
"export"
|
|
|
|
|
"local"
|
2023-08-02 11:54:53 -06:00
|
|
|
"optional"
|
|
|
|
|
"repeated"
|
|
|
|
|
"required"
|
2026-03-06 11:12:43 -05:00
|
|
|
"stream"
|
|
|
|
|
"weak"
|
|
|
|
|
"public"
|
2024-03-08 19:09:51 +09:00
|
|
|
] @keyword.modifier
|
2023-08-02 11:54:53 -06:00
|
|
|
|
2023-03-21 12:01:42 +01:00
|
|
|
[
|
|
|
|
|
"package"
|
|
|
|
|
"import"
|
feat!: align standard captures with upstream
Problem: Sharing highlight queries with upstream tree-sitter and
Helix is difficult.
Solution: Where reasonable, use capture names in tree-sitter's standard
list or Helix's Atom-style hierarchy.
Specifically:
* tree-sitter "standard capture names"
(https://github.com/tree-sitter/tree-sitter/blob/3f44b896852eb7daaa6df4fb778c9bb52c70c815/highlight/src/lib.rs#L20-L72):
- `@parameter` -> `@variable.parameter`
- `@field` -> `@variable.member`
- `@namespace` -> `@module`
- `@float` -> `@number.float`
- `@symbol` -> `@string.special.symbol`
- `@string.regex` -> `@string.regexp`
- `@text.*` -> `@markup.*` (`strong`, `italic`, `link`, `strikethrough`; with exceptions; see below)
- `@text.title` -> `@markup.heading`
- `@text.literal` -> `@markup.raw`
- `@text.reference` -> `@markup.link`
- `@text.uri` -> `@markup.link.url` (in markup links)
- `@string.special` -> `@markup.link.label` (non-url links)
- `@punctuation.special` -> `@markup.list` (markdown lists only; move subitems from `@text.todo`)
* Helix captures
(https://docs.helix-editor.com/master/themes.html#syntax-highlighting):
- `@method` -> `@function.method`
- `@method.call` -> `@function.method.call`
- `@text.{todo,warning,note,danger}` -> `@comment.{error,warning,hint,info,todo}`
- `@text.diff.{add,delete,}` -> `@diff.{plus,minus,delta}`
- `@text.uri` -> `@string.special.url` (outside markup)
- `@preproc` -> `@keyword.directive`
- `@define` -> `@keyword.directive`(`.define`?)
- `@storageclass` -> `@keyword.storage`
- `@conditional` -> `@keyword.conditional`
- `@debug` -> `@keyword.debug`
- `@exception` -> `@keyword.exception`
- `@include` -> `@keyword.import`
- `@repeat` -> `@keyword.repeat`
* cleanup
- remove some redundant `@conceal` (but still allow it for conceal-only patterns)
- remove obsolete `@error` (syntax linting is out of scope for this repo)
- sort, cleanup capture list in `CONTRIBUTING.md`
2023-12-24 10:00:20 +01:00
|
|
|
] @keyword.import
|
2023-03-21 12:01:42 +01:00
|
|
|
|
2022-04-26 15:36:26 -04:00
|
|
|
[
|
|
|
|
|
(key_type)
|
|
|
|
|
(type)
|
|
|
|
|
(message_name)
|
|
|
|
|
(enum_name)
|
|
|
|
|
(service_name)
|
|
|
|
|
(rpc_name)
|
|
|
|
|
(message_or_enum_type)
|
|
|
|
|
] @type
|
|
|
|
|
|
|
|
|
|
(enum_field
|
|
|
|
|
(identifier) @constant)
|
|
|
|
|
|
2024-01-09 11:50:31 +02:00
|
|
|
(string) @string
|
|
|
|
|
|
2022-04-26 15:36:26 -04:00
|
|
|
[
|
|
|
|
|
"\"proto3\""
|
2023-08-02 11:54:53 -06:00
|
|
|
"\"proto2\""
|
2024-01-09 11:50:31 +02:00
|
|
|
] @string.special
|
2022-04-26 15:36:26 -04:00
|
|
|
|
2026-03-06 11:12:43 -05:00
|
|
|
(escape_sequence) @string.escape
|
|
|
|
|
|
2022-04-26 15:36:26 -04:00
|
|
|
(int_lit) @number
|
|
|
|
|
|
feat!: align standard captures with upstream
Problem: Sharing highlight queries with upstream tree-sitter and
Helix is difficult.
Solution: Where reasonable, use capture names in tree-sitter's standard
list or Helix's Atom-style hierarchy.
Specifically:
* tree-sitter "standard capture names"
(https://github.com/tree-sitter/tree-sitter/blob/3f44b896852eb7daaa6df4fb778c9bb52c70c815/highlight/src/lib.rs#L20-L72):
- `@parameter` -> `@variable.parameter`
- `@field` -> `@variable.member`
- `@namespace` -> `@module`
- `@float` -> `@number.float`
- `@symbol` -> `@string.special.symbol`
- `@string.regex` -> `@string.regexp`
- `@text.*` -> `@markup.*` (`strong`, `italic`, `link`, `strikethrough`; with exceptions; see below)
- `@text.title` -> `@markup.heading`
- `@text.literal` -> `@markup.raw`
- `@text.reference` -> `@markup.link`
- `@text.uri` -> `@markup.link.url` (in markup links)
- `@string.special` -> `@markup.link.label` (non-url links)
- `@punctuation.special` -> `@markup.list` (markdown lists only; move subitems from `@text.todo`)
* Helix captures
(https://docs.helix-editor.com/master/themes.html#syntax-highlighting):
- `@method` -> `@function.method`
- `@method.call` -> `@function.method.call`
- `@text.{todo,warning,note,danger}` -> `@comment.{error,warning,hint,info,todo}`
- `@text.diff.{add,delete,}` -> `@diff.{plus,minus,delta}`
- `@text.uri` -> `@string.special.url` (outside markup)
- `@preproc` -> `@keyword.directive`
- `@define` -> `@keyword.directive`(`.define`?)
- `@storageclass` -> `@keyword.storage`
- `@conditional` -> `@keyword.conditional`
- `@debug` -> `@keyword.debug`
- `@exception` -> `@keyword.exception`
- `@include` -> `@keyword.import`
- `@repeat` -> `@keyword.repeat`
* cleanup
- remove some redundant `@conceal` (but still allow it for conceal-only patterns)
- remove obsolete `@error` (syntax linting is out of scope for this repo)
- sort, cleanup capture list in `CONTRIBUTING.md`
2023-12-24 10:00:20 +01:00
|
|
|
(float_lit) @number.float
|
2022-04-26 15:36:26 -04:00
|
|
|
|
|
|
|
|
[
|
|
|
|
|
(true)
|
|
|
|
|
(false)
|
|
|
|
|
] @boolean
|
|
|
|
|
|
2023-03-02 08:06:35 -05:00
|
|
|
(comment) @comment @spell
|
|
|
|
|
|
|
|
|
|
((comment) @comment.documentation
|
|
|
|
|
(#lua-match? @comment.documentation "^/[*][*][^*].*[*]/$"))
|
2022-04-26 15:36:26 -04:00
|
|
|
|
|
|
|
|
[
|
|
|
|
|
"("
|
|
|
|
|
")"
|
|
|
|
|
"["
|
|
|
|
|
"]"
|
|
|
|
|
"{"
|
|
|
|
|
"}"
|
|
|
|
|
"<"
|
|
|
|
|
">"
|
2023-03-02 08:06:35 -05:00
|
|
|
] @punctuation.bracket
|
2022-04-26 15:36:26 -04:00
|
|
|
|
|
|
|
|
[
|
2024-01-06 15:05:50 +09:00
|
|
|
";"
|
|
|
|
|
","
|
2025-08-30 20:39:35 -07:00
|
|
|
"."
|
|
|
|
|
":"
|
2022-04-26 15:36:26 -04:00
|
|
|
] @punctuation.delimiter
|
|
|
|
|
|
2026-03-06 11:12:43 -05:00
|
|
|
[
|
|
|
|
|
"="
|
|
|
|
|
"-"
|
|
|
|
|
"+"
|
|
|
|
|
] @operator
|