mirror of
https://github.com/vim-airline/vim-airline-themes.git
synced 2024-12-12 13:23:35 +08: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
|
|
|