mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-04 01:34:25 +00:00 
			
		
		
		
	Specifically, functions that are run in the context of the test runner are put in module `test/testutil.lua` while the functions that are run in the context of the test session are put in `test/functional/testnvim.lua`. Closes https://github.com/neovim/neovim/issues/27004.
		
			
				
	
	
		
			66 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
-- vim: set foldmethod=marker foldmarker=[[,]] :
 | 
						|
-- Test for visual block shift and tab characters.
 | 
						|
 | 
						|
local n = require('test.functional.testnvim')()
 | 
						|
 | 
						|
local clear, feed, insert = n.clear, n.feed, n.insert
 | 
						|
local feed_command, expect = n.feed_command, n.expect
 | 
						|
 | 
						|
describe('visual block shift and tab characters', function()
 | 
						|
  setup(clear)
 | 
						|
 | 
						|
  it('is working', function()
 | 
						|
    insert([[
 | 
						|
      one two three
 | 
						|
      one two three
 | 
						|
      one two three
 | 
						|
      one two three
 | 
						|
      one two three
 | 
						|
 | 
						|
      abcdefghijklmnopqrstuvwxyz
 | 
						|
      abcdefghijklmnopqrstuvwxyz
 | 
						|
      abcdefghijklmnopqrstuvwxyz
 | 
						|
      abcdefghijklmnopqrstuvwxyz
 | 
						|
      abcdefghijklmnopqrstuvwxyz]])
 | 
						|
 | 
						|
    feed('gg')
 | 
						|
    feed([[fe<C-v>4jR<esc>ugvr1:'<lt>,'>yank A<cr>]])
 | 
						|
    feed_command('/^abcdefgh')
 | 
						|
    feed('<C-v>4jI    <esc>j<lt><lt>11|D')
 | 
						|
    feed('j7|a		<esc>')
 | 
						|
    feed('j7|a		   <esc>')
 | 
						|
    feed('j7|a	       	<esc>4k13|<C-v>4j<lt>')
 | 
						|
    feed_command('$-5,$yank A')
 | 
						|
    feed_command([[$-4,$s/\s\+//g]])
 | 
						|
    feed('<C-v>4kI    <esc>j<lt><lt>')
 | 
						|
    feed('j7|a		<esc>')
 | 
						|
    feed('j7|a					<esc>')
 | 
						|
    feed('j7|a	       		<esc>4k13|<C-v>4j3<lt>')
 | 
						|
    feed_command('$-4,$yank A')
 | 
						|
 | 
						|
    -- Put @a and clean empty lines
 | 
						|
    feed_command('%d')
 | 
						|
    feed_command('0put a')
 | 
						|
    feed_command('$d')
 | 
						|
 | 
						|
    -- Assert buffer contents.
 | 
						|
    expect([[
 | 
						|
      on1 two three
 | 
						|
      on1 two three
 | 
						|
      on1 two three
 | 
						|
      on1 two three
 | 
						|
      on1 two three
 | 
						|
 | 
						|
          abcdefghijklmnopqrstuvwxyz
 | 
						|
      abcdefghij
 | 
						|
          abc	    defghijklmnopqrstuvwxyz
 | 
						|
          abc	    defghijklmnopqrstuvwxyz
 | 
						|
          abc	    defghijklmnopqrstuvwxyz
 | 
						|
          abcdefghijklmnopqrstuvwxyz
 | 
						|
      abcdefghij
 | 
						|
          abc	    defghijklmnopqrstuvwxyz
 | 
						|
          abc		defghijklmnopqrstuvwxyz
 | 
						|
          abc	    defghijklmnopqrstuvwxyz]])
 | 
						|
  end)
 | 
						|
end)
 |