mirror of
https://github.com/neovim/neovim.git
synced 2026-08-28 18:11:47 +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
@@ -986,7 +986,7 @@ describe('ui/builtin messages', function()
|
||||
|
||||
-- screen size doesn't affect internal output #10285
|
||||
eq('ErrorMsg xxx ctermfg=15 ctermbg=1 guifg=White guibg=Red',
|
||||
meths.exec("hi ErrorMsg", true))
|
||||
meths.exec2("hi ErrorMsg", { output = true }).output)
|
||||
end)
|
||||
|
||||
it(':syntax list langGroup output', function()
|
||||
@@ -1025,7 +1025,7 @@ vimComment xxx match /\s"[^\-:.%#=*].*$/ms=s+1,lc=1 excludenl contains=@vim
|
||||
match /\<endif\s\+".*$/ms=s+5,lc=5 contains=@vimCommentGroup,vimCommentString
|
||||
match /\<else\s\+".*$/ms=s+4,lc=4 contains=@vimCommentGroup,vimCommentString
|
||||
links to Comment]],
|
||||
meths.exec('syntax list vimComment', true))
|
||||
meths.exec2('syntax list vimComment', { output = true }).output)
|
||||
-- luacheck: pop
|
||||
end)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user