diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2024-08-10 12:58:04 +0200 |
|---|---|---|
| committer | Christian Clason <c.clason@uni-graz.at> | 2025-05-12 18:43:40 +0200 |
| commit | ab230eadd4a96baec86fb17bd625893649f2612f (patch) | |
| tree | ca4ecdccb519c8124028ff42f831a208b23f7bb3 | |
| parent | feat(install)!: drop support for git (diff) | |
| download | nvim-treesitter-ab230eadd4a96baec86fb17bd625893649f2612f.tar nvim-treesitter-ab230eadd4a96baec86fb17bd625893649f2612f.tar.gz nvim-treesitter-ab230eadd4a96baec86fb17bd625893649f2612f.tar.bz2 nvim-treesitter-ab230eadd4a96baec86fb17bd625893649f2612f.tar.lz nvim-treesitter-ab230eadd4a96baec86fb17bd625893649f2612f.tar.xz nvim-treesitter-ab230eadd4a96baec86fb17bd625893649f2612f.tar.zst nvim-treesitter-ab230eadd4a96baec86fb17bd625893649f2612f.zip | |
feat(config)!: remove auto_install
use https://github.com/lewis6991/ts-install.nvim instead
| -rw-r--r-- | README.md | 3 | ||||
| -rw-r--r-- | SUPPORTED_LANGUAGES.md | 6 | ||||
| -rw-r--r-- | doc/nvim-treesitter.txt | 3 | ||||
| -rw-r--r-- | lua/nvim-treesitter/config.lua | 23 | ||||
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 110 |
5 files changed, 58 insertions, 87 deletions
@@ -59,9 +59,6 @@ require'nvim-treesitter'.setup { -- List of parsers to ignore installing ignore_install = { 'unsupported' }, - -- Automatically install missing parsers when entering buffer - auto_install = false, - -- Directory to install parsers and queries to install_dir = vim.fn.stdpath('data') .. '/site' } diff --git a/SUPPORTED_LANGUAGES.md b/SUPPORTED_LANGUAGES.md index 028caeaff..fe389b55a 100644 --- a/SUPPORTED_LANGUAGES.md +++ b/SUPPORTED_LANGUAGES.md @@ -183,8 +183,8 @@ jsx (queries only)[^jsx] | community | `HFIJ ` | @steelsojka [passwd](https://github.com/ath3/tree-sitter-passwd) | community | `H ` | @amaanq [pem](https://github.com/tree-sitter-grammars/tree-sitter-pem) | core | `HF J ` | @ObserverOfTime [perl](https://github.com/tree-sitter-perl/tree-sitter-perl) | community | `HF J ` | @RabbiVeesh, @LeoNerd -[php](https://github.com/tree-sitter/tree-sitter-php)[^php] | core | `HFIJL` | @tk-shirasaka -[php_only](https://github.com/tree-sitter/tree-sitter-php)[^php_only] | core | `HFIJL` | @tk-shirasaka +[php](https://github.com/tree-sitter/tree-sitter-php)[^php] | core | `HFIJL` | @tk-shirasaka, @calebdw +[php_only](https://github.com/tree-sitter/tree-sitter-php)[^php_only] | core | `HFIJL` | @tk-shirasaka, @calebdw [phpdoc](https://github.com/claytonrcarter/tree-sitter-phpdoc) | community | `H ` | @mikehaertl [pioasm](https://github.com/leo60228/tree-sitter-pioasm) | community | `H J ` | @leo60228 [po](https://github.com/tree-sitter-grammars/tree-sitter-po) | core | `HF J ` | @amaanq @@ -198,7 +198,7 @@ jsx (queries only)[^jsx] | community | `HFIJ ` | @steelsojka [prolog](https://github.com/foxyseta/tree-sitter-prolog) | community | `HFIJ ` | @foxyseta [promql](https://github.com/MichaHoffmann/tree-sitter-promql) | community | `H J ` | @MichaHoffmann [properties](https://github.com/tree-sitter-grammars/tree-sitter-properties)[^properties] | core | `H JL` | @ObserverOfTime -[proto](https://github.com/treywood/tree-sitter-proto) | community | `HF J ` | @treywood +[proto](https://github.com/treywood/tree-sitter-proto) | community | `HFIJ ` | @treywood [prql](https://github.com/PRQL/tree-sitter-prql) | community | `H J ` | @matthias-Q [psv](https://github.com/tree-sitter-grammars/tree-sitter-csv) | core | `H ` | @amaanq [pug](https://github.com/zealot128/tree-sitter-pug) | community | `H J ` | @zealot128 diff --git a/doc/nvim-treesitter.txt b/doc/nvim-treesitter.txt index ef55eb2d8..9ba76be2a 100644 --- a/doc/nvim-treesitter.txt +++ b/doc/nvim-treesitter.txt @@ -45,9 +45,6 @@ To install supported parsers and queries, put this in your `init.lua` file: -- A list of parser names, or "core", "stable", "community", "unstable" ensure_install = { "core", "rust" }, - -- Automatically install missing parsers when entering buffer - auto_install = false, - -- List of parsers to ignore installing (for "core" etc.) ignore_install = { "javascript" }, } diff --git a/lua/nvim-treesitter/config.lua b/lua/nvim-treesitter/config.lua index 704c8e87e..4781d5a21 100644 --- a/lua/nvim-treesitter/config.lua +++ b/lua/nvim-treesitter/config.lua @@ -3,14 +3,12 @@ local M = {} M.tiers = { 'stable', 'core', 'community', 'unsupported' } ---@class TSConfig ----@field auto_install boolean ---@field ensure_install string[] ---@field ignore_install string[] ---@field install_dir string ---@type TSConfig local config = { - auto_install = false, ensure_install = {}, ignore_install = { 'unsupported' }, install_dir = vim.fs.joinpath(vim.fn.stdpath('data'), 'site'), @@ -28,27 +26,6 @@ function M.setup(user_data) config = vim.tbl_deep_extend('force', config, user_data) end - if config.auto_install then - vim.api.nvim_create_autocmd('FileType', { - callback = function(args) - local buf = args.buf --- @type integer - local ft = vim.bo[buf].filetype - local lang = vim.treesitter.language.get_lang(ft) or ft - if - require('nvim-treesitter.parsers')[lang] - and not vim.list_contains(M.installed_parsers(), lang) - and not vim.list_contains(config.ignore_install, lang) - then - require('nvim-treesitter.install').install(lang, nil, function() - -- Need to pcall since 'FileType' can be triggered multiple times - -- per buffer - pcall(vim.treesitter.start, buf, lang) - end) - end - end, - }) - end - if #config.ensure_install > 0 then local to_install = M.norm_languages(config.ensure_install, { ignored = true, installed = true }) diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 5d01f968b..685e2dffe 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -19,7 +19,7 @@ return { angular = { install_info = { generate_from_json = true, - revision = '31182d43b062a350d4bd2449f2fc0d5654972be9', + revision = 'c2d1f6d4c5f1993afce7f984ca2675af8d67457c', url = 'https://github.com/dlvandenberg/tree-sitter-angular', }, maintainers = { '@dlvandenberg' }, @@ -29,7 +29,7 @@ return { apex = { install_info = { location = 'apex', - revision = 'c47a639e1a0e5407ee39a8761ec1accebe6dacfc', + revision = '602cc4b050ef1e14a69acc2ea094968bf928fa59', url = 'https://github.com/aheber/tree-sitter-sfapex', }, maintainers = { '@aheber', '@xixiafinland' }, @@ -47,7 +47,7 @@ return { }, asm = { install_info = { - revision = '2a35fccebcc08aa8b6c7bb3cff1f07cf0f8cff83', + revision = '55b2b913f1e71136027d6fce8212e760c64f3532', url = 'https://github.com/RubixDev/tree-sitter-asm', }, maintainers = { '@RubixDev' }, @@ -161,7 +161,7 @@ return { }, c = { install_info = { - revision = 'be23d2c9d8e5b550e713ef0f86126a248462ca6e', + revision = '927da1f210ebb24b7f109230a61a55b428875985', url = 'https://github.com/tree-sitter/tree-sitter-c', }, maintainers = { '@amaanq' }, @@ -233,7 +233,7 @@ return { }, comment = { install_info = { - revision = '5d8b29f6ef3bf64d59430dcfe76b31cc44b5abfd', + revision = '3555706cef8b98d3e4c7379d7260548ff03ad363', url = 'https://github.com/stsewd/tree-sitter-comment', }, maintainers = { '@stsewd' }, @@ -275,7 +275,7 @@ return { cpp = { install_info = { generate_from_json = true, - revision = '0b4aa47f07d958a49260aadc87e8474b03897c23', + revision = 'b1a4e2b25148f3cfcb5f241cbc4c49f001a6fb35', url = 'https://github.com/tree-sitter/tree-sitter-cpp', }, maintainers = { '@theHamsta' }, @@ -284,7 +284,7 @@ return { }, css = { install_info = { - revision = 'f6be52c3d1cdb1c5e4dd7d8bce0a57497f55d6af', + revision = '9af0bdd9d225edee12f489cfa8284e248321959b', url = 'https://github.com/tree-sitter/tree-sitter-css', }, maintainers = { '@TravonteD' }, @@ -303,7 +303,7 @@ return { cuda = { install_info = { generate_from_json = true, - revision = '7c97acb8398734d790c86210c53c320df61ff66b', + revision = '8812343a1f8496fc219f3d07a270f9c1d6ba3391', url = 'https://github.com/tree-sitter-grammars/tree-sitter-cuda', }, maintainers = { '@theHamsta' }, @@ -336,7 +336,7 @@ return { }, dart = { install_info = { - revision = 'ac0bb849ccd1a923963af47573b5e396736ff582', + revision = 'cf72df5d4a623ca705e81bf9e9d264e1fe9d5da0', url = 'https://github.com/UserNobody14/tree-sitter-dart', }, maintainers = { '@akinsho' }, @@ -503,7 +503,7 @@ return { }, embedded_template = { install_info = { - revision = '38d5004a797298dc42c85e7706c5ceac46a3f29f', + revision = 'ffbf64942c334933ee7982e144557b6efb76d0b9', url = 'https://github.com/tree-sitter/tree-sitter-embedded-template', }, tier = 4, @@ -518,7 +518,7 @@ return { }, erlang = { install_info = { - revision = '8f41b588fe38b981156651ef56b192ed3d158efd', + revision = '0b5a0dcfcedd9b397252cb5568cc55ab1905b1a9', url = 'https://github.com/WhatsApp/tree-sitter-erlang', }, maintainers = { '@filmor' }, @@ -716,7 +716,7 @@ return { }, glimmer = { install_info = { - revision = '6b25d265c990139353e1f7f97baf84987ebb7bf0', + revision = 'da605af8c5999b43e6839b575eae5e6cafabb06f', url = 'https://github.com/ember-tooling/tree-sitter-glimmer', }, maintainers = { '@NullVoxPopuli' }, @@ -727,7 +727,7 @@ return { install_info = { url = 'https://github.com/NullVoxPopuli/tree-sitter-glimmer-javascript', files = { 'src/parser.c', 'src/scanner.c' }, - generate_requires_npm = true, + generate_from_json = true, }, maintainers = { '@NullVoxPopuli' }, requires = { 'ecma' }, @@ -737,7 +737,7 @@ return { install_info = { url = 'https://github.com/NullVoxPopuli/tree-sitter-glimmer-typescript', files = { 'src/parser.c', 'src/scanner.c' }, - generate_requires_npm = true, + generate_from_json = true, }, maintainers = { '@NullVoxPopuli' }, requires = { 'typescript' }, @@ -772,7 +772,7 @@ return { }, go = { install_info = { - revision = '7ee8d928db5202f6831a78f8112fd693bf69f98b', + revision = '6204b7308a32e991a8daed2e9895a90be55a510a', url = 'https://github.com/tree-sitter/tree-sitter-go', }, maintainers = { '@theHamsta', '@WinWisely268' }, @@ -780,7 +780,7 @@ return { }, goctl = { install_info = { - revision = 'f107937259c7ec4bb05f7e3d2c24b89ac36d4cc3', + revision = '49c43532689fe1f53e8b9e009d0521cab02c432b', url = 'https://github.com/chaozwn/tree-sitter-goctl', }, maintainers = { '@chaozwn' }, @@ -813,7 +813,7 @@ return { }, gotmpl = { install_info = { - revision = '9d3f6e526dd074b9edae9070b7bb778f00e87a5b', + revision = 'fd9e1c6647e5e9b23918d00d1e48710d0f703e19', url = 'https://github.com/ngalaiko/tree-sitter-go-template', }, maintainers = { '@qvalentin' }, @@ -853,7 +853,7 @@ return { }, groovy = { install_info = { - revision = '105ee343682b7eee86b38ec6858a269e16474a72', + revision = '171b3b7412bc93284fc0dad0a7a7bbbbd1b51289', url = 'https://github.com/murtaza64/tree-sitter-groovy', }, maintainers = { '@murtaza64' }, @@ -917,7 +917,7 @@ return { helm = { install_info = { location = 'dialects/helm', - revision = '9d3f6e526dd074b9edae9070b7bb778f00e87a5b', + revision = 'fd9e1c6647e5e9b23918d00d1e48710d0f703e19', url = 'https://github.com/ngalaiko/tree-sitter-go-template', }, maintainers = { '@qvalentin' }, @@ -970,7 +970,7 @@ return { }, html = { install_info = { - revision = 'e4d834eb4918df01dcad5c27d1b15d56e3bd94cd', + revision = 'd11201a263d02169d303db903ba0bb13dc59e068', url = 'https://github.com/tree-sitter/tree-sitter-html', }, maintainers = { '@TravonteD' }, @@ -992,7 +992,7 @@ return { }, http = { install_info = { - revision = '5ae6c7cfa62a7d7325c26171a1de4f6b866702b5', + revision = 'bbcd67642e5749b90277c353b72e762f3be16993', url = 'https://github.com/rest-nvim/tree-sitter-http', }, maintainers = { '@amaanq', '@NTBBloodbath' }, @@ -1016,7 +1016,7 @@ return { }, idl = { install_info = { - revision = '7412851348d9d8ba93dc6abd5e60aba9b50a4811', + revision = '5573b295410201ed22771776b34d636900eba368', url = 'https://github.com/cathaysia/tree-sitter-idl', }, maintainers = { '@cathaysia' }, @@ -1066,7 +1066,7 @@ return { }, janet_simple = { install_info = { - revision = 'ea842cb57a90865c8f50bcb4499de1a94860f3a4', + revision = '12bfab7db8a5f5b1d774ef84b5831acd34936071', url = 'https://github.com/sogaiu/tree-sitter-janet-simple', }, maintainers = { '@sogaiu' }, @@ -1074,7 +1074,7 @@ return { }, java = { install_info = { - revision = '953abfc8bb3eb2f578e1f461edba4a9885f974b8', + revision = '576d8097e495b411f31daaee28cb34c1752ac702', url = 'https://github.com/tree-sitter/tree-sitter-java', }, maintainers = { '@p00f' }, @@ -1090,7 +1090,7 @@ return { }, javascript = { install_info = { - revision = '12e45374422f6051648717be62f0ffc40a279ee2', + revision = '15887341e5b57ffdb423aff840aef142b8f53d6d', url = 'https://github.com/tree-sitter/tree-sitter-javascript', }, maintainers = { '@steelsojka' }, @@ -1136,7 +1136,7 @@ return { }, json = { install_info = { - revision = '94f5c527b2965465956c2000ed6134dd24daf2a7', + revision = 'bdd69eb8c8a58a9f54df03de0488d9990179be46', url = 'https://github.com/tree-sitter/tree-sitter-json', }, maintainers = { '@steelsojka' }, @@ -1162,7 +1162,7 @@ return { }, jsonnet = { install_info = { - revision = 'd34615fa12cc1d1cfc1f1f1a80acc9db80ee4596', + revision = 'ddd075f1939aed8147b7aa67f042eda3fce22790', url = 'https://github.com/sourcegraph/tree-sitter-jsonnet', }, maintainers = { '@nawordar' }, @@ -1215,7 +1215,7 @@ return { }, kotlin = { install_info = { - revision = '8d9d372b09fa4c3735657c5fc2ad03e53a5f05f5', + revision = 'dc5e8a14cb1f45582a8c221a270a199a5f8bdb63', url = 'https://github.com/fwcd/tree-sitter-kotlin', }, maintainers = { '@SalBakraa' }, @@ -1248,7 +1248,7 @@ return { latex = { install_info = { generate = true, - revision = 'efe5afdbb59b70214e6d70db5197dc945d5b213e', + revision = '90fd9894bebddce79f5b8041e7f82523364a619b', url = 'https://github.com/latex-lsp/tree-sitter-latex', }, maintainers = { '@theHamsta', '@clason' }, @@ -1264,7 +1264,7 @@ return { }, leo = { install_info = { - revision = '304611b5eaf53aca07459a0a03803b83b6dfd3b3', + revision = 'f5ecaaa869a845e689399092cb9a61feca66cf12', url = 'https://github.com/r001/tree-sitter-leo', }, maintainers = { '@r001' }, @@ -1280,7 +1280,7 @@ return { }, liquid = { install_info = { - revision = '7862a3424832c3a9d45eb21143b375837bd6573b', + revision = '4c19cc5b2b408de590f83497a90cc941ed59ea06', url = 'https://github.com/hankthetank27/tree-sitter-liquid', }, maintainers = { '@hankthetank27' }, @@ -1376,7 +1376,7 @@ return { }, matlab = { install_info = { - revision = '0d5a05e543af2de60cdb5e71f0f5888c95ab936f', + revision = '306c43ab28b7b8a4976e40ff0a7c26b019ad52df', url = 'https://github.com/acristoffers/tree-sitter-matlab', }, maintainers = { '@acristoffers' }, @@ -1408,7 +1408,7 @@ return { mlir = { install_info = { generate = true, - revision = 'affbd6f3b08155826a22cfa8373147acbf60f1f1', + revision = 'fd8cbd544bdff4acdfe1da63b403b5c591059aeb', url = 'https://github.com/artagnon/tree-sitter-mlir', }, maintainers = { '@artagnon' }, @@ -1440,7 +1440,7 @@ return { }, nickel = { install_info = { - revision = '3039ad9e9af3c1ffe049a04ee83a2b489915b0b9', + revision = '88d836a24b3b11c8720874a1a9286b8ae838d30a', url = 'https://github.com/nickel-lang/tree-sitter-nickel', }, tier = 4, @@ -1472,7 +1472,7 @@ return { }, nix = { install_info = { - revision = '486bb0337ee94575f53367b53bffeaea99063f2c', + revision = '537095ddc80cf610fa75a2a0149fe9799b011014', url = 'https://github.com/cstrahan/tree-sitter-nix', }, maintainers = { '@leo60228' }, @@ -1577,7 +1577,7 @@ return { install_info = { branch = 'release', generate_from_json = true, - revision = '3a21d9cb2a20a062c17f8f53d5983fd473c4673c', + revision = '55fb764e6a94512ceeaa1b9e4d53f6103e0610b2', url = 'https://github.com/tree-sitter-perl/tree-sitter-perl', }, maintainers = { '@RabbiVeesh', '@LeoNerd' }, @@ -1586,7 +1586,7 @@ return { php = { install_info = { location = 'php', - revision = 'c07d69739ba71b5a449bdbb7735991f8aabf8546', + revision = 'a552625b56c19006932cff1f207ebc07b55ed12d', url = 'https://github.com/tree-sitter/tree-sitter-php', }, maintainers = { '@tk-shirasaka', '@calebdw' }, @@ -1597,7 +1597,7 @@ return { php_only = { install_info = { location = 'php_only', - revision = 'c07d69739ba71b5a449bdbb7735991f8aabf8546', + revision = 'a552625b56c19006932cff1f207ebc07b55ed12d', url = 'https://github.com/tree-sitter/tree-sitter-php', }, maintainers = { '@tk-shirasaka', '@calebdw' }, @@ -1633,7 +1633,7 @@ return { install_info = { branch = 'release', generate_from_json = true, - revision = '39da859947b94abdee43e431368e1ae975c0a424', + revision = '0bf8387987c21bf2f8ed41d2575a8f22b139687f', url = 'https://github.com/tree-sitter-perl/tree-sitter-pod', }, maintainers = { '@RabbiVeesh', '@LeoNerd' }, @@ -1778,7 +1778,7 @@ return { }, python = { install_info = { - revision = '0dee05ef958ba2eae88d1e65f24b33cad70d4367', + revision = '346fa42dc2990d2a2736cc60891369d0d3d8e65c', url = 'https://github.com/tree-sitter/tree-sitter-python', }, maintainers = { '@stsewd', '@theHamsta' }, @@ -1803,7 +1803,7 @@ return { qmljs = { install_info = { generate_from_json = true, - revision = 'febf48a5b6928600cd8fb2a01254743af550780d', + revision = 'cc4186f15e2829385be33440561fdd17b1c40cf7', url = 'https://github.com/yuja/tree-sitter-qmljs', }, maintainers = { '@Decodetalkers' }, @@ -1967,7 +1967,7 @@ return { }, ruby = { install_info = { - revision = '0ffe457fb6aabf064f173fd30ea356845cef2513', + revision = '7dbc1e2d0e2d752577655881f73b4573f3fe85d4', url = 'https://github.com/tree-sitter/tree-sitter-ruby', }, maintainers = { '@TravonteD' }, @@ -1983,7 +1983,7 @@ return { }, rust = { install_info = { - revision = '9c84af007b0f144954adb26b3f336495cbb320a7', + revision = '2b43eafe64470846cdaa0eaae1e287c120ee5f03', url = 'https://github.com/tree-sitter/tree-sitter-rust', }, maintainers = { '@amaanq' }, @@ -1991,7 +1991,7 @@ return { }, scala = { install_info = { - revision = 'be7184df70dd3b5790becfb2c93ba796b2797781', + revision = 'dd7fe4d7838ca751f5259718658dd309d999855b', url = 'https://github.com/tree-sitter/tree-sitter-scala', }, maintainers = { '@stevanmilic' }, @@ -2025,7 +2025,7 @@ return { sflog = { install_info = { location = 'sflog', - revision = 'c47a639e1a0e5407ee39a8761ec1accebe6dacfc', + revision = '602cc4b050ef1e14a69acc2ea094968bf928fa59', url = 'https://github.com/aheber/tree-sitter-sfapex', }, maintainers = { '@aheber', '@xixiaofinland' }, @@ -2052,7 +2052,7 @@ return { }, slint = { install_info = { - revision = '4a0558cc0fcd7a6110815b9bbd7cc12d7ab31e74', + revision = '34ccfd58d3baee7636f62d9326f32092264e8407', url = 'https://github.com/slint-ui/tree-sitter-slint', }, maintainers = { '@hunger' }, @@ -2094,7 +2094,7 @@ return { soql = { install_info = { location = 'soql', - revision = 'c47a639e1a0e5407ee39a8761ec1accebe6dacfc', + revision = '602cc4b050ef1e14a69acc2ea094968bf928fa59', url = 'https://github.com/aheber/tree-sitter-sfapex', }, maintainers = { '@aheber', '@xixiafinland' }, @@ -2103,7 +2103,7 @@ return { sosl = { install_info = { location = 'sosl', - revision = 'c47a639e1a0e5407ee39a8761ec1accebe6dacfc', + revision = '602cc4b050ef1e14a69acc2ea094968bf928fa59', url = 'https://github.com/aheber/tree-sitter-sfapex', }, maintainers = { '@aheber', '@xixiafinland' }, @@ -2130,7 +2130,7 @@ return { install_info = { branch = 'gh-pages', generate_from_json = true, - revision = 'c67ecbd37d8d12f22e4cc7138afd14bc20253e10', + revision = 'a8b10c76759a372d0f92bb070b4f5c993e0ce5f9', url = 'https://github.com/derekstride/tree-sitter-sql', }, maintainers = { '@derekstride' }, @@ -2172,7 +2172,7 @@ return { styled = { install_info = { generate_from_json = true, - revision = '65835cca33a5f033bcde580ed66cde01c1fabbbe', + revision = 'e8bf912db4996b32515639d42fe2b258517f135e', url = 'https://github.com/mskelton/tree-sitter-styled', }, maintainers = { '@mskelton' }, @@ -2224,7 +2224,7 @@ return { swift = { install_info = { generate = true, - revision = '769bb834feb2947f2c706d82830b0a05958727de', + revision = 'd627a54d7266f0a8ee61b447b34d0ad07dadf1d6', url = 'https://github.com/alex-pinkus/tree-sitter-swift', }, maintainers = { '@alex-pinkus' }, @@ -2264,7 +2264,7 @@ return { }, tact = { install_info = { - revision = '91cc49a83f4f0b3a756bf7d0e65403a9cf757003', + revision = 'b3710fe2723bd9b285de7f3d0c0717bebf3f17bd', url = 'https://github.com/tact-lang/tree-sitter-tact', }, maintainers = { '@novusnota' }, @@ -2298,7 +2298,7 @@ return { templ = { install_info = { generate_from_json = true, - revision = 'de0d0ee129cf643872e8e0d5c4a6589b5a3aae23', + revision = '58aed18580c476d7bc211f187e7b07a6cd12bb1f', url = 'https://github.com/vrischmann/tree-sitter-templ', }, maintainers = { '@vrischmann' }, @@ -2486,7 +2486,7 @@ return { v = { install_info = { location = 'tree_sitter_v', - revision = '7f80a0441ff2ca6aa8ced8e1ee87cead9dd26515', + revision = 'a18d695ec105f0cda1903d1974f493207e122b35', url = 'https://github.com/vlang/v-analyzer', }, maintainers = { '@kkharji', '@amaanq' }, @@ -2526,7 +2526,7 @@ return { }, vhs = { install_info = { - revision = '90028bbadb267ead5b87830380f6a825147f0c0f', + revision = '09f8fbfe40a3a699b200daca7d92e65fbbe9f9e6', url = 'https://github.com/charmbracelet/tree-sitter-vhs', }, maintainers = { '@caarlos0' }, |
