Justin M. Keyes 
							
						 
					 
					
						
						
							
						
						2afbce7651 
					 
					
						
						
							
							refactor(tests): remove redir_exec  #15718  
						
						... 
						
						
						
						Problem
- `redir_exec` is obsolete, but it keeps getting used in new tests
  because people copy existing tests.
- Disadvantages of `redir_exec`:
  - Captures extra junk before the actual error/message that we _want_ to test.
  - Does not fail on error, unlike e.g. `command()`.
Solution
- Use new functions like `nvim_exec` and `pcall_err`. 
						
						
					 
					
						2021-09-19 02:29:37 -07:00 
						 
				 
			
				
					
						
							
							
								Jan Edmund Lazo 
							
						 
					 
					
						
						
							
						
						0d9fa42d83 
					 
					
						
						
							
							fixup! startup: handle autoload and lua packages during startup  
						
						
						
						
					 
					
						2020-11-02 22:37:07 -05:00 
						 
				 
			
				
					
						
							
							
								Björn Linse 
							
						 
					 
					
						
						
							
						
						c60c7375f5 
					 
					
						
						
							
							startup: handle autoload and lua packages during startup  
						
						... 
						
						
						
						¡NO HAY BANDA! 
						
						
					 
					
						2020-11-02 15:21:36 +01:00 
						 
				 
			
				
					
						
							
							
								Justin M. Keyes 
							
						 
					 
					
						
						
							
						
						a3b6c2a3dc 
					 
					
						
						
							
							API: rename nvim_execute_lua => nvim_exec_lua  
						
						... 
						
						
						
						- We already find ourselves renaming nvim_execute_lua in tests and
  scripts, which suggests "exec" is the verb we actually want.
- Add "exec" verb to `:help dev-api`. 
						
						
					 
					
						2019-12-02 22:06:42 -08:00 
						 
				 
			
				
					
						
							
							
								Björn Linse 
							
						 
					 
					
						
						
							
						
						dab40f43b1 
					 
					
						
						
							
							Add v:lua.func() vimL syntax for calling lua  
						
						... 
						
						
						
						Also simplify error messages when calling lua from vimL. 
						
						
					 
					
						2019-11-16 22:33:21 +01:00 
						 
				 
			
				
					
						
							
							
								Björn Linse 
							
						 
					 
					
						
						
							
						
						e6d77993d1 
					 
					
						
						
							
							lua: do not crash on syntax error in debug.debug()  
						
						
						
						
					 
					
						2019-08-05 13:19:44 +02:00 
						 
				 
			
				
					
						
							
							
								Björn Linse 
							
						 
					 
					
						
						
							
						
						d3a7bdefb0 
					 
					
						
						
							
							lua: immediate-callback safe print()  
						
						
						
						
					 
					
						2019-08-05 13:19:44 +02:00 
						 
				 
			
				
					
						
							
							
								Justin M. Keyes 
							
						 
					 
					
						
						
							
						
						11a481f711 
					 
					
						
						
							
							Merge  #9686  'win/Lua: monkey-patch os.getenv()'  
						
						... 
						
						
						
						fixes  #9681  
					
						2019-03-16 20:28:52 +01:00 
						 
				 
			
				
					
						
							
							
								erw7 
							
						 
					 
					
						
						
							
						
						c9264e6d52 
					 
					
						
						
							
							Fix os.getenv of lua on Windows  
						
						... 
						
						
						
						Change to use os_getenv instead of getenv because environment variable
set by uv_os_setenv can not be get with getenv. 
						
						
					 
					
						2019-03-07 13:49:02 +09:00 
						 
				 
			
				
					
						
							
							
								Björn Linse 
							
						 
					 
					
						
						
							
						
						98e7112390 
					 
					
						
						
							
							msg: do not scroll entire screen ( #8088 )  
						
						
						
						
					 
					
						2018-03-31 11:12:27 +02:00 
						 
				 
			
				
					
						
							
							
								Nikolai Aleksandrovich Pavlov 
							
						 
					 
					
						
						
							
						
						bf1b1ea6ee 
					 
					
						
						
							
							lua/executor: Fix crash when printing empty string ( #7157 )  
						
						
						
						
					 
					
						2017-08-13 17:37:35 +02:00 
						 
				 
			
				
					
						
							
							
								ZyX 
							
						 
					 
					
						
						
							
						
						a409fa2b3f 
					 
					
						
						
							
							lua: Use automatic determining of suffixes only for package.cpath  
						
						
						
						
					 
					
						2017-05-28 23:55:51 +03:00 
						 
				 
			
				
					
						
							
							
								ZyX 
							
						 
					 
					
						
						
							
						
						97602371e6 
					 
					
						
						
							
							lua: Add paths from &runtimepath to package.path and package.cpath  
						
						
						
						
					 
					
						2017-05-25 16:27:40 +03:00 
						 
				 
			
				
					
						
							
							
								ZyX 
							
						 
					 
					
						
						
							
						
						a24e94215e 
					 
					
						
						
							
							eval,functests: Fix linter errors  
						
						
						
						
					 
					
						2017-03-27 00:18:55 +03:00 
						 
				 
			
				
					
						
							
							
								ZyX 
							
						 
					 
					
						
						
							
						
						d13fdfd446 
					 
					
						
						
							
							functests: Add test for debug.debug  
						
						
						
						
					 
					
						2017-03-27 00:18:54 +03:00 
						 
				 
			
				
					
						
							
							
								ZyX 
							
						 
					 
					
						
						
							
						
						9fd2bf67aa 
					 
					
						
						
							
							executor,functests: Add print() tests, some fixes  
						
						
						
						
					 
					
						2017-03-27 00:13:16 +03:00