Fix default_bg check on guibg/ctermbg if condition

This commit is contained in:
Hikmat Jafarli 2019-05-08 09:38:25 +04:00
parent 357c560632
commit 88b0b1c077
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ function! s:hi(...)
call add(cmd, 'ctermfg='.fg[1])
endif
if bg != s:default_lst && bg != default_bg
if bg != s:default_lst && bg != s:default_bg
call add(cmd, 'guibg='.bg[0])
call add(cmd, 'ctermbg='.bg[1])
endif