mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 19:17:02 -04:00
Update Zig highlights
Recently I rearranged the keywords. This PR brings the highlights query file up to date with that.
This commit is contained in:
parent
be26661417
commit
bf3b792ce6
1 changed files with 82 additions and 87 deletions
|
|
@ -2,11 +2,7 @@
|
|||
(container_doc_comment)
|
||||
(doc_comment)
|
||||
(line_comment)
|
||||
] @comment @spell
|
||||
|
||||
((line_comment) @text.note
|
||||
(#match? @text.note "^// *zig fmt: (on|off) *$")
|
||||
)
|
||||
] @comment
|
||||
|
||||
[
|
||||
variable: (IDENTIFIER)
|
||||
|
|
@ -27,7 +23,7 @@ parameter: (IDENTIFIER) @parameter
|
|||
field_access: (IDENTIFIER)
|
||||
parameter: (IDENTIFIER)
|
||||
] @type
|
||||
(#match? @type "^[A-Z]")
|
||||
(#match? @type "^[A-Z]([a-z]+[A-Za-z0-9]*)*$")
|
||||
)
|
||||
;; assume camelCase is a function
|
||||
(
|
||||
|
|
@ -36,7 +32,7 @@ parameter: (IDENTIFIER) @parameter
|
|||
field_access: (IDENTIFIER)
|
||||
parameter: (IDENTIFIER)
|
||||
] @function
|
||||
(#match? @function "^[a-z]+[A-Z]+")
|
||||
(#match? @function "^[a-z]+([A-Z][a-z0-9]*)+$")
|
||||
)
|
||||
|
||||
;; assume all CAPS_1 is a constant
|
||||
|
|
@ -51,7 +47,7 @@ parameter: (IDENTIFIER) @parameter
|
|||
[
|
||||
function_call: (IDENTIFIER)
|
||||
function: (IDENTIFIER)
|
||||
] @function.call
|
||||
] @function
|
||||
|
||||
exception: "!" @exception
|
||||
|
||||
|
|
@ -60,15 +56,17 @@ exception: "!" @exception
|
|||
(#eq? @variable.builtin "_")
|
||||
)
|
||||
|
||||
; (PtrTypeStart "c" @variable.builtin)
|
||||
(PtrTypeStart "c" @variable.builtin)
|
||||
|
||||
; (
|
||||
; (ContainerDeclType
|
||||
; (ErrorUnionExpr)
|
||||
; ; "enum"
|
||||
; )
|
||||
; (ContainerField (IDENTIFIER) @constant)
|
||||
; )
|
||||
(
|
||||
(ContainerDeclType
|
||||
[
|
||||
(ErrorUnionExpr)
|
||||
"enum"
|
||||
]
|
||||
)
|
||||
(ContainerField (IDENTIFIER) @constant)
|
||||
)
|
||||
|
||||
field_constant: (IDENTIFIER) @constant
|
||||
|
||||
|
|
@ -84,44 +82,46 @@ field_constant: (IDENTIFIER) @constant
|
|||
[
|
||||
(LINESTRING)
|
||||
(STRINGLITERALSINGLE)
|
||||
] @string @spell
|
||||
] @string
|
||||
|
||||
(CHAR_LITERAL) @character
|
||||
(EscapeSequence) @string.escape
|
||||
(FormatSequence) @string.special
|
||||
|
||||
[
|
||||
"allowzero"
|
||||
"volatile"
|
||||
"threadlocal"
|
||||
"inline"
|
||||
"noinline"
|
||||
"noalias"
|
||||
] @type.qualifier
|
||||
|
||||
[
|
||||
"anytype"
|
||||
"anyframe"
|
||||
(BuildinTypeExpr)
|
||||
] @type.builtin
|
||||
|
||||
(BreakLabel (IDENTIFIER) @label)
|
||||
(BlockLabel (IDENTIFIER) @label)
|
||||
|
||||
[
|
||||
"true"
|
||||
"false"
|
||||
] @boolean
|
||||
"asm"
|
||||
"defer"
|
||||
"errdefer"
|
||||
"nosuspend"
|
||||
"test"
|
||||
] @keyword
|
||||
|
||||
[
|
||||
"undefined"
|
||||
"unreachable"
|
||||
"null"
|
||||
] @constant.builtin
|
||||
"fn"
|
||||
] @keyword.function
|
||||
|
||||
[
|
||||
"and"
|
||||
"or"
|
||||
"orelse"
|
||||
] @keyword.operator
|
||||
|
||||
[
|
||||
"return"
|
||||
"break"
|
||||
"continue"
|
||||
"async"
|
||||
"await"
|
||||
"suspend"
|
||||
"resume"
|
||||
] @keyword.return
|
||||
|
||||
[
|
||||
"else"
|
||||
"if"
|
||||
"else"
|
||||
"switch"
|
||||
] @conditional
|
||||
|
||||
|
|
@ -131,64 +131,60 @@ field_constant: (IDENTIFIER) @constant
|
|||
] @repeat
|
||||
|
||||
[
|
||||
"or"
|
||||
"and"
|
||||
"orelse"
|
||||
] @keyword.operator
|
||||
|
||||
[
|
||||
"packed"
|
||||
"opaque"
|
||||
"comptime"
|
||||
] @storageclass
|
||||
|
||||
[
|
||||
"struct"
|
||||
"enum"
|
||||
"union"
|
||||
"error"
|
||||
"defer"
|
||||
"errdefer"
|
||||
"async"
|
||||
"nosuspend"
|
||||
"await"
|
||||
"suspend"
|
||||
"resume"
|
||||
"export"
|
||||
"extern"
|
||||
"asm"
|
||||
"callconv"
|
||||
] @keyword
|
||||
"usingnamespace"
|
||||
] @include
|
||||
|
||||
[
|
||||
"try"
|
||||
"error"
|
||||
"catch"
|
||||
] @exception
|
||||
|
||||
; VarDecl
|
||||
[
|
||||
"anytype"
|
||||
(BuildinTypeExpr)
|
||||
] @type.builtin
|
||||
|
||||
[
|
||||
"struct"
|
||||
"union"
|
||||
"enum"
|
||||
"opaque"
|
||||
"error"
|
||||
] @type.definition
|
||||
|
||||
[
|
||||
"const"
|
||||
"var"
|
||||
"fn"
|
||||
] @keyword.function
|
||||
"volatile"
|
||||
"allowzero"
|
||||
"noalias"
|
||||
] @type.qualifier
|
||||
|
||||
[
|
||||
"test"
|
||||
"pub"
|
||||
"usingnamespace"
|
||||
] @keyword
|
||||
|
||||
[
|
||||
"return"
|
||||
"break"
|
||||
"continue"
|
||||
] @keyword.return
|
||||
|
||||
[
|
||||
"linksection"
|
||||
"addrspace"
|
||||
"align"
|
||||
] @function.builtin
|
||||
"callconv"
|
||||
"linksection"
|
||||
] @storageclass
|
||||
|
||||
[
|
||||
"comptime"
|
||||
"export"
|
||||
"extern"
|
||||
"inline"
|
||||
"noinline"
|
||||
"packed"
|
||||
"pub"
|
||||
"threadlocal"
|
||||
] @attribute
|
||||
|
||||
[
|
||||
"null"
|
||||
"unreachable"
|
||||
"undefined"
|
||||
"true"
|
||||
"false"
|
||||
] @constant.builtin
|
||||
|
||||
[
|
||||
(CompareOp)
|
||||
|
|
@ -201,7 +197,6 @@ field_constant: (IDENTIFIER) @constant
|
|||
"*"
|
||||
"**"
|
||||
"->"
|
||||
"=>"
|
||||
".?"
|
||||
".*"
|
||||
"?"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue