mirror of
				https://github.com/neovim/neovim.git
				synced 2025-10-26 12:27:24 +00:00 
			
		
		
		
	 fe9cbcb3a5
			
		
	
	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
 |