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 | |
| parent | 1a97304cf642e9f887122e162b1999768b60c9d7 (diff) | |
| download | vim-polyglot-6745c49110838db9ac39e85bbcf690b40bc20f83.tar.gz vim-polyglot-6745c49110838db9ac39e85bbcf690b40bc20f83.zip | |
Update all packagesv1.11.2
Diffstat (limited to 'autoload')
| -rw-r--r-- | autoload/css_color.vim | 4 | ||||
| -rw-r--r-- | autoload/xml/html5.vim | 2 | 
2 files changed, 3 insertions, 3 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 diff --git a/autoload/xml/html5.vim b/autoload/xml/html5.vim index 67926f59..5ec9cd7e 100644 --- a/autoload/xml/html5.vim +++ b/autoload/xml/html5.vim @@ -601,7 +601,7 @@ let g:xmldata_html5 = {  \ ],  \ 'meta': [      \ [], -    \ extend(copy(global_attributes), {'name': [], 'http-equiv': ['refresh', 'default-style', 'content-type'], 'content': [], 'charset': charset}) +    \ extend(copy(global_attributes), {'name': ['application-name', 'author', 'description', 'generator', 'referrer', 'creator', 'googlebot', 'publisher', 'robots', 'slurp', 'viewport', 'theme-color'], 'http-equiv': ['refresh', 'default-style', 'content-type'], 'content': [], 'charset': charset})  \ ],  \ 'meter': [      \ phrasing_elements, | 
