diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2024-04-22 19:56:30 +0200 |
|---|---|---|
| committer | Christian Clason <c.clason@uni-graz.at> | 2025-05-12 18:43:40 +0200 |
| commit | 214cfcf851d95a4c4f2dc7526b95ce9d31c88a76 (patch) | |
| tree | 8767ed993c7cd6d72a05fe64b46b9835c943c221 /scripts | |
| parent | feat!: track parser revision in Lua (diff) | |
| download | nvim-treesitter-214cfcf851d95a4c4f2dc7526b95ce9d31c88a76.tar nvim-treesitter-214cfcf851d95a4c4f2dc7526b95ce9d31c88a76.tar.gz nvim-treesitter-214cfcf851d95a4c4f2dc7526b95ce9d31c88a76.tar.bz2 nvim-treesitter-214cfcf851d95a4c4f2dc7526b95ce9d31c88a76.tar.lz nvim-treesitter-214cfcf851d95a4c4f2dc7526b95ce9d31c88a76.tar.xz nvim-treesitter-214cfcf851d95a4c4f2dc7526b95ce9d31c88a76.tar.zst nvim-treesitter-214cfcf851d95a4c4f2dc7526b95ce9d31c88a76.zip | |
feat!: use tree-sitter build
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/convert-lockfile.lua | 1 | ||||
| -rwxr-xr-x | scripts/update-readme.lua | 9 |
2 files changed, 3 insertions, 7 deletions
diff --git a/scripts/convert-lockfile.lua b/scripts/convert-lockfile.lua index e0a694897..5759c0426 100755 --- a/scripts/convert-lockfile.lua +++ b/scripts/convert-lockfile.lua @@ -9,6 +9,7 @@ local lockfile = vim.json.decode(util.read_file(filename)) --[[@as table<string, for k, p in pairs(parsers) do if p.install_info then p.install_info.revision = lockfile[k].revision + p.install_info.files = nil end end diff --git a/scripts/update-readme.lua b/scripts/update-readme.lua index 9f6f9a3de..5a8b1c17b 100755 --- a/scripts/update-readme.lua +++ b/scripts/update-readme.lua @@ -16,8 +16,8 @@ table.sort(sorted_parsers, function(a, b) end) local generated_text = [[ -Language | Tier | Queries | CLI | Maintainer --------- |:----:|:-------:|:---:| ---------- +Language | Tier | Queries | Maintainer +-------- |:----:|:-------:| ---------- ]] local footnotes = '' @@ -58,11 +58,6 @@ for _, v in ipairs(sorted_parsers) do .. (vim.uv.fs_stat('runtime/queries/' .. v.name .. '/locals.scm') and 'L' or ' ') .. '` | ' - -- CLI - generated_text = generated_text - .. (p.install_info and p.install_info.generate and '✓' or '') - .. ' | ' - -- Maintainer generated_text = generated_text .. (p.maintainers and table.concat(p.maintainers, ', ') or '') |
