mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 00:40:05 +08:00
Ignore warnning msg
This commit is contained in:
parent
3cf2dad981
commit
27406f4fa9
@ -70,10 +70,16 @@ function! s:self.hide_in_normal(name) abort
|
|||||||
endif
|
endif
|
||||||
if &termguicolors || has('gui_running')
|
if &termguicolors || has('gui_running')
|
||||||
let bg = self.group2dict('Normal').guibg
|
let bg = self.group2dict('Normal').guibg
|
||||||
|
if empty(bg)
|
||||||
|
return
|
||||||
|
endif
|
||||||
let group.guifg = bg
|
let group.guifg = bg
|
||||||
let group.guibg = bg
|
let group.guibg = bg
|
||||||
else
|
else
|
||||||
let bg = self.group2dict('Normal').ctermbg
|
let bg = self.group2dict('Normal').ctermbg
|
||||||
|
if empty(bg)
|
||||||
|
return
|
||||||
|
endif
|
||||||
let group.ctermfg = bg
|
let group.ctermfg = bg
|
||||||
let group.ctermbg = bg
|
let group.ctermbg = bg
|
||||||
endif
|
endif
|
||||||
|
Loading…
Reference in New Issue
Block a user