Merge pull request #42 from xiguichen/master

fix b:color_pattern not found error
This commit is contained in:
Konstantin
2019-10-21 09:37:16 +02:00
committed by GitHub

View File

@@ -126,6 +126,12 @@ function! s:VimCssInit(update)
:set isk+=#
:set isk+=.
if !exists("b:color_pattern")
let b:color_pattern = {}
return
endif
if len(keys(b:color_pattern))>0
call s:RestoreColors()
return