mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
10 lines
146 B
Lua
10 lines
146 B
Lua
|
-- Island of Misfit Toys
|
||
|
|
||
|
local M = {}
|
||
|
|
||
|
function M.redir_exec()
|
||
|
error('redir_exec is deprecated, use nvim_exec() or pcall_err()')
|
||
|
end
|
||
|
|
||
|
return M
|