diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2015-01-23 21:09:23 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2015-01-23 21:09:23 +0100 |
commit | 6745c49110838db9ac39e85bbcf690b40bc20f83 (patch) | |
tree | 3b1c42f67bacb5ddb5b6afc5b4610f4c238877a7 /autoload/css_color.vim | |
parent | 1a97304cf642e9f887122e162b1999768b60c9d7 (diff) | |
download | vim-polyglot-1.11.2.tar.gz vim-polyglot-1.11.2.zip |
Update all packagesv1.11.2
Diffstat (limited to 'autoload/css_color.vim')
-rw-r--r-- | autoload/css_color.vim | 4 |
1 files changed, 2 insertions, 2 deletions
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 |