diff options
| author | Yorick Peterse <yorick@yorickpeterse.com> | 2025-08-21 18:31:55 +0200 |
|---|---|---|
| committer | Christian Clason <ch.clason+github@icloud.com> | 2025-08-21 19:51:10 +0200 |
| commit | 44e90ec66e44f7dbb60030f453a48282b3a1125a (patch) | |
| tree | 96edec0cbe1f21dd1858ec1a967934e31f36467f | |
| parent | feat(matlab)!: update parser and queries (diff) | |
| download | nvim-treesitter-44e90ec66e44f7dbb60030f453a48282b3a1125a.tar nvim-treesitter-44e90ec66e44f7dbb60030f453a48282b3a1125a.tar.gz nvim-treesitter-44e90ec66e44f7dbb60030f453a48282b3a1125a.tar.bz2 nvim-treesitter-44e90ec66e44f7dbb60030f453a48282b3a1125a.tar.lz nvim-treesitter-44e90ec66e44f7dbb60030f453a48282b3a1125a.tar.xz nvim-treesitter-44e90ec66e44f7dbb60030f453a48282b3a1125a.tar.zst nvim-treesitter-44e90ec66e44f7dbb60030f453a48282b3a1125a.zip | |
feat(inko): add support for array patterns
This updates the version of the Inko parser to the latest version and
includes indent support for the new array pattern node.
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 2 | ||||
| -rw-r--r-- | runtime/queries/inko/indents.scm | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 88732ab19..d658b5d18 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -1042,7 +1042,7 @@ return { }, inko = { install_info = { - revision = 'f58a87ac4dc6a7955c64c9e4408fbd693e804686', + revision = '74cbd0f69053b4a9ad4fed8831dee983ec7e4990', url = 'https://github.com/inko-lang/tree-sitter-inko', }, maintainers = { '@yorickpeterse' }, diff --git a/runtime/queries/inko/indents.scm b/runtime/queries/inko/indents.scm index d2d9a5724..260249343 100644 --- a/runtime/queries/inko/indents.scm +++ b/runtime/queries/inko/indents.scm @@ -27,6 +27,7 @@ (trait) (tuple) (tuple_pattern) + (array_pattern) (type_arguments) ] @indent.begin |
