mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-04 09:44:31 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			629 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			629 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
-- Test for CTRL-W in Insert mode
 | 
						|
 | 
						|
local helpers = require('test.functional.helpers')(after_each)
 | 
						|
local clear, feed, expect = helpers.clear, helpers.feed, helpers.expect
 | 
						|
 | 
						|
describe('CTRL-W in Insert mode', function()
 | 
						|
  setup(clear)
 | 
						|
 | 
						|
  -- luacheck: ignore 611 (Line contains only whitespaces)
 | 
						|
  it('works for multi-byte characters', function()
 | 
						|
    for i = 1, 6 do
 | 
						|
      feed('o wwwこんにちわ世界ワールドvim ' .. string.rep('<C-w>', i) .. '<esc>')
 | 
						|
    end
 | 
						|
 | 
						|
    expect([[
 | 
						|
      
 | 
						|
       wwwこんにちわ世界ワールド
 | 
						|
       wwwこんにちわ世界
 | 
						|
       wwwこんにちわ
 | 
						|
       www
 | 
						|
       
 | 
						|
      ]])
 | 
						|
  end)
 | 
						|
end)
 |