mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06: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
|