mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-04 09:44:31 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			52 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
local helpers = require('test.functional.helpers')(after_each)
 | 
						|
local Screen = require('test.functional.ui.screen')
 | 
						|
local clear, feed, execute = helpers.clear, helpers.feed, helpers.execute
 | 
						|
 | 
						|
if helpers.pending_win32(pending) then return end
 | 
						|
 | 
						|
describe('Signs', function()
 | 
						|
  local screen
 | 
						|
 | 
						|
  before_each(function()
 | 
						|
    clear()
 | 
						|
    screen = Screen.new()
 | 
						|
    screen:attach()
 | 
						|
    screen:set_default_attr_ids( {
 | 
						|
      [0] = {bold=true, foreground=255},
 | 
						|
      [1] = {background = Screen.colors.Yellow},
 | 
						|
      [2] = {foreground = Screen.colors.DarkBlue, background = Screen.colors.Grey},
 | 
						|
    } )
 | 
						|
  end)
 | 
						|
 | 
						|
  after_each(function()
 | 
						|
    screen:detach()
 | 
						|
  end)
 | 
						|
 | 
						|
  describe(':sign place', function()
 | 
						|
    it('shadows previously placed signs', function()
 | 
						|
      feed('ia<cr>b<cr>c<cr><esc>')
 | 
						|
      execute('sign define piet text=>> texthl=Search')
 | 
						|
      execute('sign define pietx text=>! texthl=Search')
 | 
						|
      execute('sign place 1 line=1 name=piet buffer=1')
 | 
						|
      execute('sign place 2 line=3 name=piet buffer=1')
 | 
						|
      execute('sign place 3 line=1 name=pietx buffer=1')
 | 
						|
      screen:expect([[
 | 
						|
        {1:>!}a                                                  |
 | 
						|
        {2:  }b                                                  |
 | 
						|
        {1:>>}c                                                  |
 | 
						|
        {2:  }^                                                   |
 | 
						|
        {2:  }{0:~                                                  }|
 | 
						|
        {2:  }{0:~                                                  }|
 | 
						|
        {2:  }{0:~                                                  }|
 | 
						|
        {2:  }{0:~                                                  }|
 | 
						|
        {2:  }{0:~                                                  }|
 | 
						|
        {2:  }{0:~                                                  }|
 | 
						|
        {2:  }{0:~                                                  }|
 | 
						|
        {2:  }{0:~                                                  }|
 | 
						|
        {2:  }{0:~                                                  }|
 | 
						|
        :sign place 3 line=1 name=pietx buffer=1             |
 | 
						|
      ]])
 | 
						|
    end)
 | 
						|
  end)
 | 
						|
end)
 |