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
@@ -101,7 +101,7 @@ describe('Remote', function()
|
||||
expect(contents)
|
||||
eq(1, #funcs.getbufinfo())
|
||||
-- Since we didn't pass silent, we should get a complaint
|
||||
neq(nil, string.find(meths.exec('messages', true), 'E247'))
|
||||
neq(nil, string.find(meths.exec2('messages', { output = true }).output, 'E247'))
|
||||
end)
|
||||
|
||||
it('creates server if not found with tabs', function()
|
||||
@@ -110,7 +110,7 @@ describe('Remote', function()
|
||||
eq(2, #funcs.gettabinfo())
|
||||
eq(2, #funcs.getbufinfo())
|
||||
-- We passed silent, so no message should be issued about the server not being found
|
||||
eq(nil, string.find(meths.exec('messages', true), 'E247'))
|
||||
eq(nil, string.find(meths.exec2('messages', { output = true }).output, 'E247'))
|
||||
end)
|
||||
|
||||
pending('exits with error on', function()
|
||||
|
||||
Reference in New Issue
Block a user