Do not return a negative background color

fixes #1429 and similar
This commit is contained in:
Christian Brabandt 2017-03-05 22:18:04 +01:00
parent fbd791e7f0
commit 134c0204f3
No known key found for this signature in database
GPG Key ID: F3F92DA383FDDE09
1 changed files with 4 additions and 0 deletions

View File

@ -108,6 +108,10 @@ function! s:CheckDefined(colors)
" but at least this makes sure, the group will be defined
let fg = g:airline#highlighter#normal_fg_hi
let bg = synIDattr(synIDtrans(hlID('Normal')), 'bg', 'cterm')
if bg < 0
" in case there is no background color defined for Normal
let bg = a:colors[3]
endif
return a:colors[0:1] + [fg, bg] + [a:colors[4]]
endfunction