mirror of
https://github.com/neovim/neovim.git
synced 2025-10-26 12:27:24 +00:00
feat(api): nvim_exec2(), deprecate nvim_exec() #19032
Problem: The signature of nvim_exec() is not extensible per ":help api-contract". Solution: Introduce nvim_exec2() and deprecate nvim_exec().
This commit is contained in:
committed by
GitHub
parent
257d894d75
commit
fe9cbcb3a5
@@ -1413,12 +1413,12 @@ describe('API/extmarks', function()
|
||||
end)
|
||||
|
||||
it('does not crash with append/delete/undo sequence', function()
|
||||
meths.exec([[
|
||||
meths.exec2([[
|
||||
let ns = nvim_create_namespace('myplugin')
|
||||
call nvim_buf_set_extmark(0, ns, 0, 0, {})
|
||||
call append(0, '')
|
||||
%delete
|
||||
undo]],false)
|
||||
undo]], { output = false })
|
||||
assert_alive()
|
||||
end)
|
||||
|
||||
@@ -1450,7 +1450,7 @@ describe('API/extmarks', function()
|
||||
|
||||
feed('u')
|
||||
-- handles pasting
|
||||
meths.exec([[let @a='asdfasdf']], false)
|
||||
meths.exec2([[let @a='asdfasdf']], { output = false })
|
||||
feed([["ap]])
|
||||
eq({ {1, 0, 0}, {2, 0, 8} },
|
||||
meths.buf_get_extmarks(0, ns, 0, -1, {}))
|
||||
|
||||
Reference in New Issue
Block a user