diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2025-12-06 13:22:04 +0100 |
|---|---|---|
| committer | Christian Clason <ch.clason+github@icloud.com> | 2025-12-06 13:29:48 +0100 |
| commit | 596923959a50d8d975ec129f531f6673ea72fc21 (patch) | |
| tree | 0b31a9eb8ca609894528cb080867214d9a392e52 /lua | |
| parent | feat(parsers): update angular, c3, desktop, elm, forth, inko, mlir, nix, pkl,... (diff) | |
| download | nvim-treesitter-596923959a50d8d975ec129f531f6673ea72fc21.tar nvim-treesitter-596923959a50d8d975ec129f531f6673ea72fc21.tar.gz nvim-treesitter-596923959a50d8d975ec129f531f6673ea72fc21.tar.bz2 nvim-treesitter-596923959a50d8d975ec129f531f6673ea72fc21.tar.lz nvim-treesitter-596923959a50d8d975ec129f531f6673ea72fc21.tar.xz nvim-treesitter-596923959a50d8d975ec129f531f6673ea72fc21.tar.zst nvim-treesitter-596923959a50d8d975ec129f531f6673ea72fc21.zip | |
fix(inko): downgrade parser
Problem: The commit https://github.com/inko-lang/tree-sitter-inko/commit/fc37d05c363ccf7f515354c5a47d72b2d3ff555e broke parsing a textobjects query.
Solution: Downgrade parser to previous commit and pin it (until we can move it to tier 1).
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index e1e5cc23c..13b481140 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -1041,11 +1041,11 @@ return { }, inko = { install_info = { - revision = 'fc37d05c363ccf7f515354c5a47d72b2d3ff555e', + revision = '9d7ed4f6c0ea2a8f846f3bb00e33ab21ec9ca379', url = 'https://github.com/inko-lang/tree-sitter-inko', }, maintainers = { '@yorickpeterse' }, - tier = 2, + tier = 3, }, ispc = { install_info = { |
