diff options
author | JJ | 2023-11-01 01:00:19 +0000 |
---|---|---|
committer | JJ | 2023-11-01 04:08:32 +0000 |
commit | eaf8d6d30da5014a3c475c4187b9dccfe621afd5 (patch) | |
tree | dd1d64f6b72b27256caa988120ab3075d08a9c69 /runtime/queries/zig | |
parent | 5c371208692df2727d02a37646b7829f011680a8 (diff) |
Add rainbow tree-sitter highlights
ref: https://github.com/helix-editor/helix/issues/695
ref: https://github.com/helix-editor/helix/pull/2857
Co-authored-by: Michael Davis <mcarsondavis@gmail.com>
Diffstat (limited to 'runtime/queries/zig')
-rw-r--r-- | runtime/queries/zig/rainbows.scm | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/runtime/queries/zig/rainbows.scm b/runtime/queries/zig/rainbows.scm new file mode 100644 index 00000000..af823e6d --- /dev/null +++ b/runtime/queries/zig/rainbows.scm @@ -0,0 +1,42 @@ +[ + ; zig + (ArrayTypeStart) + ; using () + (AsmExpr) + (AsmOutputItem) + (ByteAlign) + (CallConv) + (ContainerDeclType) + (ErrorSetDecl) + (FnCallArguments) + (ForPrefix) + (GroupedExpr) + (IfPrefix) + (ParamDeclList) + (SwitchExpr) + (WhileContinueExpr) + (WhilePrefix) + ; for align expressions + (PtrTypeStart) + + ; using {} + (Block) + (BlockExpr) + (FormatSequence) + (InitList) + + ; using [] + (SliceTypeStart) + (SuffixOp) + + ; zig uses || for captures + (Payload "|" @rainbow.bracket) + (PtrPayload "|" @rainbow.bracket) + (PtrIndexPayload "|" @rainbow.bracket) +] @rainbow.scope + +[ + "(" ")" + "{" "}" + "[" "]" +] @rainbow.bracket |