mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 19:17:02 -04:00
[docgen] Update README.md
skip-checks: true
This commit is contained in:
parent
6142223557
commit
d8f75f0b09
4 changed files with 25 additions and 8 deletions
|
|
@ -1,3 +1,10 @@
|
|||
-- Execute as `nvim --headless -c "luafile ./scripts/write-lockfile.lua"`
|
||||
require 'nvim-treesitter.install'.write_lockfile('verbose')
|
||||
local skip_langs = vim.fn.getenv('SKIP_LOCKFILE_UPDATE_FOR_LANGS')
|
||||
if skip_langs == vim.NIL then
|
||||
skip_langs = {}
|
||||
else
|
||||
skip_langs = vim.fn.split(skip_langs, ',')
|
||||
end
|
||||
print("Skipping languages: "..vim.inspect(skip_langs))
|
||||
require 'nvim-treesitter.install'.write_lockfile('verbose', skip_langs)
|
||||
vim.cmd('q')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue