diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2016-01-22 09:08:00 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2016-01-22 09:08:00 +0100 |
commit | 61390f58850c34b27d2a28dc14ebd760de152cc9 (patch) | |
tree | ef4822fc1f712ef0e2bdc50a435d7ef590da4d77 /autoload/xml/html5.vim | |
parent | f8a0fb37bf57fdf705747cc3aacbe50b6b2d6482 (diff) | |
download | vim-polyglot-61390f58850c34b27d2a28dc14ebd760de152cc9.tar.gz vim-polyglot-61390f58850c34b27d2a28dc14ebd760de152cc9.zip |
Update
Diffstat (limited to 'autoload/xml/html5.vim')
-rw-r--r-- | autoload/xml/html5.vim | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/autoload/xml/html5.vim b/autoload/xml/html5.vim index 2fad3521..b422b2ca 100644 --- a/autoload/xml/html5.vim +++ b/autoload/xml/html5.vim @@ -1,9 +1,9 @@ if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'html5') == -1 " Vim completion for HTML5 data file -" Language: HTML5 -" Maintainer: othree <othree@gmail.com> -" Last Change: 2011 Apr 9 +" Language: HTML (version 5.1 Draft 2016 Jan 13) +" Maintainer: Kao, Wei-Ko(othree) ( othree AT gmail DOT com ) +" Last Change: 2016 Jan 20 " Lang Tag: {{{ @@ -598,9 +598,13 @@ let g:xmldata_html5 = { \ global_attributes \ ], \ 'menu': [ - \ flow_elements + ['li'], + \ flow_elements + ['menuitem'], \ extend(copy(global_attributes), {'type': ['toolbar', 'context'], 'label': []}) \ ], +\ 'menuitem': [ + \ flow_elements + ['li'], + \ extend(copy(global_attributes), {'type': ['toolbar', 'context'], 'label': [], 'icon': [], 'disabled': [], 'checked': [], 'radiogroup': [], 'default': [], 'command': []}) +\ ], \ 'meta': [ \ [], \ 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}) |