diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2026-08-13 10:02:34 +0200 |
|---|---|---|
| committer | Christian Clason <ch.clason+github@icloud.com> | 2026-08-13 10:17:22 +0200 |
| commit | 3d71e1b3995c9680d3d301bc796f14d6900795d4 (patch) | |
| tree | 0c25218215a491b488a63bdcbb6209d90f49f49a | |
| parent | bot(parsers): update fsharp, javadoc, kotlin, latex, luadoc, mlir, nginx, oca... (diff) | |
| download | nvim-treesitter-3d71e1b3995c9680d3d301bc796f14d6900795d4.tar nvim-treesitter-3d71e1b3995c9680d3d301bc796f14d6900795d4.tar.gz nvim-treesitter-3d71e1b3995c9680d3d301bc796f14d6900795d4.tar.bz2 nvim-treesitter-3d71e1b3995c9680d3d301bc796f14d6900795d4.tar.lz nvim-treesitter-3d71e1b3995c9680d3d301bc796f14d6900795d4.tar.xz nvim-treesitter-3d71e1b3995c9680d3d301bc796f14d6900795d4.tar.zst nvim-treesitter-3d71e1b3995c9680d3d301bc796f14d6900795d4.zip | |
feat(teal)!: update parser and queries
Breaking change: `(function_name)` node replaced by
`(table_function_name)`.
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 2 | ||||
| -rw-r--r-- | runtime/queries/teal/locals.scm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 7f21c012a..cfe724bbe 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -2264,7 +2264,7 @@ return { teal = { install_info = { generate = true, - revision = '05d276e737055e6f77a21335b7573c9d3c091e2f', + revision = 'ac6b42ffb23d5d52b582c02508dd3524ac0ba3df', url = 'https://github.com/euclidianAce/tree-sitter-teal', }, maintainers = { '@euclidianAce' }, diff --git a/runtime/queries/teal/locals.scm b/runtime/queries/teal/locals.scm index c2386c632..73df12ecd 100644 --- a/runtime/queries/teal/locals.scm +++ b/runtime/queries/teal/locals.scm @@ -14,7 +14,7 @@ (anon_function) @local.scope (function_statement - (function_name) @local.definition.function) @local.scope + (table_function_name) @local.definition.function) @local.scope (program) @local.scope |
