mirror of
https://github.com/neovim/neovim.git
synced 2025-12-15 19:05:40 +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
@@ -362,7 +362,7 @@ describe('Command-line coloring', function()
|
||||
{EOB:~ }|
|
||||
:e^ |
|
||||
]])
|
||||
eq('', meths.exec('messages', true))
|
||||
eq('', meths.exec2('messages', { output = true }).output)
|
||||
end)
|
||||
it('silences :echon', function()
|
||||
set_color_cb('Echoning')
|
||||
@@ -377,7 +377,7 @@ describe('Command-line coloring', function()
|
||||
{EOB:~ }|
|
||||
:e^ |
|
||||
]])
|
||||
eq('', meths.exec('messages', true))
|
||||
eq('', meths.exec2('messages', { output = true }).output)
|
||||
end)
|
||||
it('silences :echomsg', function()
|
||||
set_color_cb('Echomsging')
|
||||
@@ -392,7 +392,7 @@ describe('Command-line coloring', function()
|
||||
{EOB:~ }|
|
||||
:e^ |
|
||||
]])
|
||||
eq('', meths.exec('messages', true))
|
||||
eq('', meths.exec2('messages', { output = true }).output)
|
||||
end)
|
||||
it('does the right thing when throwing', function()
|
||||
set_color_cb('Throwing')
|
||||
@@ -858,7 +858,7 @@ describe('Ex commands coloring', function()
|
||||
]])
|
||||
feed('<CR>')
|
||||
eq('Error detected while processing :\nE605: Exception not caught: 42\nE749: empty buffer',
|
||||
meths.exec('messages', true))
|
||||
meths.exec2('messages', { output = true }).output)
|
||||
end)
|
||||
it('errors out when failing to get callback', function()
|
||||
meths.set_var('Nvim_color_cmdline', 42)
|
||||
|
||||
Reference in New Issue
Block a user