Add support for matching function call arguments in Zig (#14436)

This commit is contained in:
Lukáš Lalinský
2025-09-14 02:13:21 +02:00
committed by GitHub
parent 1388166570
commit 2d7436fc20
2 changed files with 4 additions and 1 deletions

View File

@@ -1623,7 +1623,7 @@ args = { console = "internalConsole", attachCommands = [ "platform select remote
[[grammar]]
name = "zig"
source = { git = "https://github.com/tree-sitter-grammars/tree-sitter-zig", rev = "b71affffdb4222ff2d2dea6e164f76603b0be6bc" }
source = { git = "https://github.com/tree-sitter-grammars/tree-sitter-zig", rev = "6479aa13f32f701c383083d8b28360ebd682fb7d" }
[[language]]
name = "prolog"

View File

@@ -18,5 +18,8 @@
(parameters
((_) @parameter.inside . ","? @parameter.around) @parameter.around)
(arguments
((_) @parameter.inside . ","? @parameter.around) @parameter.around)
(comment) @comment.inside
(comment)+ @comment.around