nvim-treesitter/scripts/install-parsers.lua
Christian Clason 008cc677d2 fix tests
disable Windows tests for now (hang on parser compile)
2023-09-09 16:17:03 +02:00

15 lines
272 B
Lua
Executable file

#!/usr/bin/env -S nvim -l
vim.opt.runtimepath:append('.')
-- needed on CI
vim.fn.mkdir(vim.fn.stdpath('cache'), 'p')
local done = false
require('nvim-treesitter.install').install('all', {}, function()
done = true
end)
vim.wait(6000000, function()
return done
end)