diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2026-04-03 14:05:55 +0200 |
|---|---|---|
| committer | Christian Clason <ch.clason+github@icloud.com> | 2026-04-03 14:23:36 +0200 |
| commit | 2098db61dcca4857465c340ee29c81f12c7355e8 (patch) | |
| tree | ef55445a4fd2806af8aea0c78f98f5ca7f080cf1 /lua | |
| parent | feat(parsers): add jjdescription (#8625) (diff) | |
| download | nvim-treesitter-2098db61dcca4857465c340ee29c81f12c7355e8.tar nvim-treesitter-2098db61dcca4857465c340ee29c81f12c7355e8.tar.gz nvim-treesitter-2098db61dcca4857465c340ee29c81f12c7355e8.tar.bz2 nvim-treesitter-2098db61dcca4857465c340ee29c81f12c7355e8.tar.lz nvim-treesitter-2098db61dcca4857465c340ee29c81f12c7355e8.tar.xz nvim-treesitter-2098db61dcca4857465c340ee29c81f12c7355e8.tar.zst nvim-treesitter-2098db61dcca4857465c340ee29c81f12c7355e8.zip | |
fix(yuck): improper use of supertypes in queries
Problem: `(ast_block)` is a supertype, of which `(symbol)` (among
others) is a subtype, which makes the final local pattern invalid.
(This was not noticed before because the parser is stuck at ABI 14
due to a missing `tree-sitter.json`.)
Solution: Fix the pattern and use supertype where appropriate.
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index fc5e42ac0..8c9ff4a18 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -2654,7 +2654,7 @@ return { }, yuck = { install_info = { - revision = 'e877f6ade4b77d5ef8787075141053631ba12318', + revision = '6c60112b3b3e739fb1ca4a8ea4bea2b6ffe11318', url = 'https://github.com/tree-sitter-grammars/tree-sitter-yuck', }, maintainers = { '@Philipp-M', '@amaanq' }, |
