mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-04 01:34:25 +00:00 
			
		
		
		
	Before functional/testnvim.lua was moved from functional/testutil.lua in
052498ed42, it was explicitly preloaded,
but now it is preloaded implicitly via functional/ui/screen.lua.
Also fix warnings about unused variables in other preload.lua files.
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			473 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			473 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
-- Modules loaded here will NOT be cleared and reloaded by Busted.
 | 
						|
-- Busted started doing this to help provide more isolation.  See issue #62
 | 
						|
-- for more information about this.
 | 
						|
local t = require('test.testutil')
 | 
						|
require('test.functional.testnvim')()
 | 
						|
require('test.functional.ui.screen')
 | 
						|
 | 
						|
local has_ffi, ffi = pcall(require, 'ffi')
 | 
						|
if t.is_os('win') and has_ffi then
 | 
						|
  ffi.cdef [[
 | 
						|
  typedef int errno_t;
 | 
						|
  errno_t _set_fmode(int mode);
 | 
						|
  ]]
 | 
						|
  ffi.C._set_fmode(0x8000)
 | 
						|
end
 |