mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-04 01:34:25 +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
 |