This commit is contained in:
Barrett Ruth 2025-09-22 23:22:07 -04:00
parent de14552a3e
commit 5f555a0285
5 changed files with 33 additions and 17 deletions

View file

@ -75,11 +75,12 @@ describe('async integration', function()
end,
}
vim.cmd = function() end
vim.cmd.e = function() end
vim.cmd.only = function() end
vim.cmd.startinsert = function() end
vim.cmd.stopinsert = function() end
vim.cmd = {
e = function() end,
only = function() end,
startinsert = function() end,
stopinsert = function() end,
}
vim.api.nvim_get_current_buf = function()
return 1
end