aboutsummaryrefslogtreecommitdiff
path: root/test/deprecated.lua
blob: b162c8fc93e502205786a133c50223712a3718b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
-- Island of Misfit Toys

local M = {}

function M.redir_exec()
  error('redir_exec is deprecated, use nvim_exec() or pcall_err()')
end

return M