diff options
| author | Yorick Peterse <yorick@yorickpeterse.com> | 2025-12-06 22:38:22 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-06 22:38:22 +0100 |
| commit | 20db421f5fba0c23f6a7629af96ba6d4fc531677 (patch) | |
| tree | 2ca1c4dd50e7548897866011480478295547d0bf | |
| parent | feat(json): add support for jsonc files (diff) | |
| download | nvim-treesitter-20db421f5fba0c23f6a7629af96ba6d4fc531677.tar nvim-treesitter-20db421f5fba0c23f6a7629af96ba6d4fc531677.tar.gz nvim-treesitter-20db421f5fba0c23f6a7629af96ba6d4fc531677.tar.bz2 nvim-treesitter-20db421f5fba0c23f6a7629af96ba6d4fc531677.tar.lz nvim-treesitter-20db421f5fba0c23f6a7629af96ba6d4fc531677.tar.xz nvim-treesitter-20db421f5fba0c23f6a7629af96ba6d4fc531677.tar.zst nvim-treesitter-20db421f5fba0c23f6a7629af96ba6d4fc531677.zip | |
feat(inko): update to v0.4.0 (#8327)
This changes the structure of "if" expressions so the queries for
nvim-treesitter-textobjects can be changed as to not cause any crashes.
| -rw-r--r-- | SUPPORTED_LANGUAGES.md | 2 | ||||
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/SUPPORTED_LANGUAGES.md b/SUPPORTED_LANGUAGES.md index 0000baa6d..b2c006f84 100644 --- a/SUPPORTED_LANGUAGES.md +++ b/SUPPORTED_LANGUAGES.md @@ -138,7 +138,7 @@ html_tags (queries only)[^html_tags] | unstable | `H IJ ` | @TravonteD [idl](https://github.com/cathaysia/tree-sitter-idl) | unstable | `H IJ ` | @cathaysia [idris](https://github.com/kayhide/tree-sitter-idris) | unstable | `HF JL` | [ini](https://github.com/justinmk/tree-sitter-ini) | unstable | `HF J ` | @theHamsta -[inko](https://github.com/inko-lang/tree-sitter-inko) | unmaintained | `HFIJL` | @yorickpeterse +[inko](https://github.com/inko-lang/tree-sitter-inko) | stable | `HFIJL` | @yorickpeterse [ispc](https://github.com/tree-sitter-grammars/tree-sitter-ispc) | unstable | `HFIJL` | @fab4100 [janet_simple](https://github.com/sogaiu/tree-sitter-janet-simple) | unstable | `HF JL` | @sogaiu [java](https://github.com/tree-sitter/tree-sitter-java) | unstable | `HFIJL` | @p00f diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 1351a00de..49f16187b 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -1025,11 +1025,11 @@ return { }, inko = { install_info = { - revision = '9d7ed4f6c0ea2a8f846f3bb00e33ab21ec9ca379', + revision = 'v0.4.0', url = 'https://github.com/inko-lang/tree-sitter-inko', }, maintainers = { '@yorickpeterse' }, - tier = 3, + tier = 1, }, ispc = { install_info = { |
