comparison runtime/syntax/html.vim @ 10734:523cd59d6db0

Update runtime files. commit https://github.com/vim/vim/commit/690afe1fef87e7eef6fb7343a926617d5f7315fa Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 28 18:34:47 2017 +0100 Update runtime files.
author Christian Brabandt <cb@256bit.org>
date Sat, 28 Jan 2017 18:45:05 +0100
parents 74effdaa369e
children 3b26420fc639
comparison
equal deleted inserted replaced
10733:7a5df0f9635f 10734:523cd59d6db0
1 " Vim syntax file 1 " Vim syntax file
2 " Language: HTML 2 " Language: HTML
3 " Maintainer: Jorge Maldonado Ventura <jorgesumle@freakspot.net> 3 " Maintainer: Jorge Maldonado Ventura <jorgesumle@freakspot.net>
4 " Previous Maintainer: Claudio Fleiner <claudio@fleiner.com> 4 " Previous Maintainer: Claudio Fleiner <claudio@fleiner.com>
5 " Repository: https://notabug.org/jorgesumle/vim-html-syntax 5 " Repository: https://notabug.org/jorgesumle/vim-html-syntax
6 " Last Change: 2017 Jan 04 6 " Last Change: 2017 Jan 21
7 " included patch from Jorge Maldonado Ventura 7 " included patch from Jorge Maldonado Ventura
8 8
9 " Please check :help html.vim for some comments and a description of the options 9 " Please check :help html.vim for some comments and a description of the options
10 10
11 " quit when a syntax file was already loaded 11 " quit when a syntax file was already loaded
53 syn keyword htmlTagName contained abbr acronym bdo button col label 53 syn keyword htmlTagName contained abbr acronym bdo button col label
54 syn keyword htmlTagName contained colgroup del fieldset iframe ins legend 54 syn keyword htmlTagName contained colgroup del fieldset iframe ins legend
55 syn keyword htmlTagName contained object optgroup q s tbody tfoot thead 55 syn keyword htmlTagName contained object optgroup q s tbody tfoot thead
56 56
57 " new html 5 tags 57 " new html 5 tags
58 syn keyword htmlTagName contained article aside audio bdi canvas datalist 58 syn keyword htmlTagName contained article aside audio bdi canvas data
59 syn keyword htmlTagName contained details embed figcaption figure 59 syn keyword htmlTagName contained datalist details embed figcaption figure
60 syn keyword htmlTagName contained footer header hgroup main mark 60 syn keyword htmlTagName contained footer header hgroup keygen main mark
61 syn keyword htmlTagName contained menuitem meter nav output picture 61 syn keyword htmlTagName contained menuitem meter nav output picture
62 syn keyword htmlTagName contained progress rb rp rt rtc ruby section 62 syn keyword htmlTagName contained progress rb rp rt rtc ruby section
63 syn keyword htmlTagName contained slot source template time track video wbr 63 syn keyword htmlTagName contained slot source template time track video wbr
64 64
65 " legal arg names 65 " legal arg names
95 syn keyword htmlArg contained multiple nohref nowrap object profile readonly 95 syn keyword htmlArg contained multiple nohref nowrap object profile readonly
96 syn keyword htmlArg contained rules scheme scope span standby style 96 syn keyword htmlArg contained rules scheme scope span standby style
97 syn keyword htmlArg contained summary tabindex valuetype version 97 syn keyword htmlArg contained summary tabindex valuetype version
98 98
99 " html 5 arg names 99 " html 5 arg names
100 syn keyword htmlArg contained contenteditable contextmenu draggable dropzone 100 syn keyword htmlArg contained allowfullscreen async autocomplete autofocus
101 syn keyword htmlArg contained hidden spellcheck title translate 101 syn keyword htmlArg contained autoplay challenge contenteditable contextmenu
102 syn keyword htmlArg contained controls crossorigin default dirname download
103 syn keyword htmlArg contained draggable dropzone form formaction formenctype
104 syn keyword htmlArg contained formmethod formnovalidate formtarget hidden
105 syn keyword htmlArg contained high icon inputmode keytype kind list loop low
106 syn keyword htmlArg contained max min minlength muted nonce novalidate open
107 syn keyword htmlArg contained optimum pattern placeholder poster preload
108 syn keyword htmlArg contained radiogroup required reversed sandbox spellcheck
109 syn keyword htmlArg contained sizes srcset srcdoc srclang step title translate
110 syn keyword htmlArg contained typemustmatch
102 111
103 " special characters 112 " special characters
104 syn match htmlSpecialChar "&#\=[0-9A-Za-z]\{1,8};" 113 syn match htmlSpecialChar "&#\=[0-9A-Za-z]\{1,8};"
105 114
106 " Comments (the real ones or the old netscape ones) 115 " Comments (the real ones or the old netscape ones)