mirror of
https://github.com/vim-airline/vim-airline.git
synced 2025-07-27 07:54:44 +02:00
commit
81eca99486
@ -4,14 +4,16 @@ Describe themes.vim
|
|||||||
highlight clear Normal
|
highlight clear Normal
|
||||||
End
|
End
|
||||||
|
|
||||||
It should extract correct colors
|
It should extract correct colors with No termguicolors
|
||||||
call airline#highlighter#reset_hlcache()
|
if !exists("+termguicolors")
|
||||||
highlight Foo ctermfg=1 ctermbg=2
|
call airline#highlighter#reset_hlcache()
|
||||||
let colors = airline#themes#get_highlight('Foo')
|
highlight Foo ctermfg=1 ctermbg=2
|
||||||
Assert Equals(colors[0], 'NONE')
|
let colors = airline#themes#get_highlight('Foo')
|
||||||
Assert Equals(colors[1], 'NONE')
|
Assert Equals(colors[0], 'NONE')
|
||||||
Assert Equals(colors[2], '1')
|
Assert Equals(colors[1], 'NONE')
|
||||||
Assert Equals(colors[3], '2')
|
Assert Equals(colors[2], '1')
|
||||||
|
Assert Equals(colors[3], '2')
|
||||||
|
endif
|
||||||
End
|
End
|
||||||
|
|
||||||
if exists("+termguicolors")
|
if exists("+termguicolors")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user