add an incomplete test

This commit is contained in:
Jonathon 2024-10-28 10:01:43 -04:00
parent 88878b6e50
commit 149eea3f94

View File

@ -1084,6 +1084,38 @@ something
end
)
end)
describe('setup a diff with 2 files consisting of a large diff, cancel running linematch algorithm with ctrl-c and set linematch:8000', function()
before_each(function()
local f1 = [[
a
a
a
a
a
a
]]
local f2 = [[
ba
ba
ba
ba
ba
ba
]]
write_file(fname, f1, false)
write_file(fname_2, f2, false)
reread()
end)
it(
'cancel the linematch algorithm',
function()
feed(':set diffopt+=linematch:800<cr>')
-- feed('<C-c>') -- cancel from user
end
)
end)
end)
describe('regressions', function()