mirror of
				https://github.com/vim-airline/vim-airline.git
				synced 2025-10-31 11:44:34 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			313 B
		
	
	
	
		
			VimL
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			313 B
		
	
	
	
		
			VimL
		
	
	
	
	
	
| describe 'highlighter'
 | |
|   it 'should create separator highlight groups'
 | |
|     hi Foo1 ctermfg=1 ctermbg=2
 | |
|     hi Foo2 ctermfg=3 ctermbg=4
 | |
|     call airline#highlighter#add_separator('Foo1', 'Foo2', 0)
 | |
|     let hl = airline#highlighter#get_highlight('Foo1_to_Foo2')
 | |
|     Expect hl == [ '', '', '4', '2', '' ]
 | |
|   end
 | |
| end
 | |
| 
 |