mirror of
https://github.com/neovim/neovim
synced 2025-07-16 01:01:49 +00:00
Problem: The signature of nvim_exec() is not extensible per ":help api-contract". Solution: Introduce nvim_exec2() and deprecate nvim_exec().
10 lines
147 B
Lua
10 lines
147 B
Lua
-- Island of Misfit Toys
|
|
|
|
local M = {}
|
|
|
|
function M.redir_exec()
|
|
error('redir_exec is deprecated, use nvim_exec2() or pcall_err()')
|
|
end
|
|
|
|
return M
|