diff options
Diffstat (limited to 'runtime/queries/zig/textobjects.scm')
-rw-r--r-- | runtime/queries/zig/textobjects.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/queries/zig/textobjects.scm b/runtime/queries/zig/textobjects.scm index 67528943..5c4ebd86 100644 --- a/runtime/queries/zig/textobjects.scm +++ b/runtime/queries/zig/textobjects.scm @@ -1,4 +1,4 @@ -(TopLevelDecl (FnProto) +(Decl (FnProto) (_) @function.inside) @function.around (TestDecl (_) @test.inside) @test.around @@ -6,10 +6,10 @@ ; matches all of: struct, enum, union ; this unfortunately cannot be split up because ; of the way struct "container" types are defined -(TopLevelDecl (VarDecl (ErrorUnionExpr (SuffixExpr (ContainerDecl +(Decl (VarDecl (ErrorUnionExpr (SuffixExpr (ContainerDecl (_) @class.inside))))) @class.around -(TopLevelDecl (VarDecl (ErrorUnionExpr (SuffixExpr (ErrorSetDecl +(Decl (VarDecl (ErrorUnionExpr (SuffixExpr (ErrorSetDecl (_) @class.inside))))) @class.around (ParamDeclList |