From 6745c49110838db9ac39e85bbcf690b40bc20f83 Mon Sep 17 00:00:00 2001 From: Adam Stankiewicz Date: Fri, 23 Jan 2015 21:09:23 +0100 Subject: Update all packages --- autoload/css_color.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'autoload/css_color.vim') diff --git a/autoload/css_color.vim b/autoload/css_color.vim index 4c02d720..e94a69cd 100644 --- a/autoload/css_color.vim +++ b/autoload/css_color.vim @@ -235,9 +235,9 @@ endfunction let s:_hexcolor = '#\(\x\{3}\|\x\{6}\)\>' " submatch 1 let s:_funcname = '\(rgb\|hsl\)a\?' " submatch 2 -let s:_numval = '\(\d\{1,3}%\?\)' " submatch 3,4,5 let s:_ws_ = '\s*' -let s:_listsep = s:_ws_ . ',' . s:_ws_ +let s:_numval = s:_ws_ . '\(\d\{1,3}%\?\)' " submatch 3,4,5 +let s:_listsep = s:_ws_ . ',' let s:_otherargs_ = '\%(,[^)]*\)\?' let s:_funcexpr = s:_funcname . '[(]' . s:_numval . s:_listsep . s:_numval . s:_listsep . s:_numval . s:_ws_ . s:_otherargs_ . '[)]' let s:_csscolor = s:_hexcolor . '\|' . s:_funcexpr -- cgit v1.2.3