Update gleam tree-sitter grammar (#13793)

pull/13681/head
Damir Vandic 2025-06-18 16:32:41 +02:00 committed by GitHub
parent 6b94d70f20
commit 3c6c221d45
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -2083,7 +2083,7 @@ auto-format = true
[[grammar]]
name = "gleam"
source = { git = "https://github.com/gleam-lang/tree-sitter-gleam", rev = "426e67087fd62be5f4533581b5916b2cf010fb5b" }
source = { git = "https://github.com/gleam-lang/tree-sitter-gleam", rev = "6ece453acf8b14568c10f629f8cd25d3dde3794f" }
[[language]]
name = "quarto"

View File

@ -1,11 +1,11 @@
(function
parameters: (function_parameters (function_parameter)? @parameter.inside)
body: (function_body) @function.inside) @function.around
body: (block) @function.inside) @function.around
(anonymous_function
body: (function_body) @function.inside) @function.around
body: (block) @function.inside) @function.around
((function
name: (identifier) @_name
body: (function_body) @test.inside) @test.around
body: (block) @test.inside) @test.around
(#match? @_name "_test$"))