Update zig tree-sitter (#1501)

use latest upstream version
move comptime from @keyword.function to @keyword.directive
use AssignOp
enhance indents
This commit is contained in:
voroskoi 2022-01-14 15:29:24 +01:00 committed by GitHub
parent ac6b2de0fd
commit 6bfd001b48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 4 deletions

@ -1 +1 @@
Subproject commit 1f27fd1dfe7f352408f01b4894c7825f3a1d6c47
Subproject commit 93331b8bd8b4ebee2b575490b2758f16ad4e9f30

View File

@ -144,7 +144,6 @@
; VarDecl
[
"comptime"
"threadlocal"
"fn"
] @keyword.function
@ -178,6 +177,7 @@
; PrecProc
[
"comptime"
"inline"
"noinline"
"asm"
@ -195,15 +195,14 @@
(BitwiseOp)
(BitShiftOp)
(AdditionOp)
(AssignOp)
(MultiplyOp)
(PrefixOp)
"*"
"**"
"->"
"=>"
".?"
".*"
"="
"?"
] @operator

View File

@ -3,6 +3,9 @@ indent = [
"BlockExpr",
"ContainerDecl",
"SwitchExpr",
"AssignExpr",
"ErrorUnionExpr",
"Statement",
"InitList"
]