mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
fe9cbcb3a5
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
|