mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 10:45:16 -07:00
c3836e40a2
Problem: Not all Lua code is checked by stylua. Automating code-style is an important mechanism for reducing time spent on accidental (non-essential) complexity. Solution: - Enable lintlua for `test/unit/` directory. - TODO: only `test/functional/` remains unchecked. previous:45fe4d11ad
previous:517f0cc634
51 lines
1.0 KiB
Lua
51 lines
1.0 KiB
Lua
local helpers = require('test.functional.helpers')(after_each)
|
|
|
|
local clear = helpers.clear
|
|
local exec_lua = helpers.exec_lua
|
|
|
|
describe('treesitter perf', function()
|
|
setup(function()
|
|
clear()
|
|
end)
|
|
|
|
it('can handle large folds', function()
|
|
helpers.command 'edit ./src/nvim/eval.c'
|
|
exec_lua [[
|
|
local parser = vim.treesitter.get_parser(0, "c", {})
|
|
vim.treesitter.highlighter.new(parser)
|
|
|
|
local function keys(k)
|
|
vim.api.nvim_feedkeys(k, 't', true)
|
|
end
|
|
|
|
vim.opt.foldmethod = "manual"
|
|
vim.opt.lazyredraw = false
|
|
|
|
vim.cmd '1000,7000fold'
|
|
vim.cmd '999'
|
|
|
|
local function mk_keys(n)
|
|
local acc = ""
|
|
for _ = 1, n do
|
|
acc = acc .. "j"
|
|
end
|
|
for _ = 1, n do
|
|
acc = acc .. "k"
|
|
end
|
|
|
|
return "qq" .. acc .. "q"
|
|
end
|
|
|
|
local start = vim.uv.hrtime()
|
|
keys(mk_keys(10))
|
|
|
|
for _ = 1, 100 do
|
|
keys "@q"
|
|
vim.cmd'redraw!'
|
|
end
|
|
|
|
return vim.uv.hrtime() - start
|
|
]]
|
|
end)
|
|
end)
|