Mercurial > vim
comparison runtime/syntax/html.vim @ 10548:74effdaa369e
Updated runtime files.
commit https://github.com/vim/vim/commit/68563937f58ea2dc31b58739336c383d2fd7e6cf
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Jan 10 13:31:15 2017 +0100
Updated runtime files.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 10 Jan 2017 13:45:05 +0100 |
parents | 883396809b45 |
children | 523cd59d6db0 |
comparison
equal
deleted
inserted
replaced
10547:b1438ad6d6e8 | 10548:74effdaa369e |
---|---|
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 " Last Change: 2016 Dec 29 | 5 " Repository: https://notabug.org/jorgesumle/vim-html-syntax |
6 " Last Change: 2017 Jan 04 | |
6 " included patch from Jorge Maldonado Ventura | 7 " included patch from Jorge Maldonado Ventura |
7 | 8 |
8 " 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 |
9 | 10 |
10 " quit when a syntax file was already loaded | 11 " quit when a syntax file was already loaded |
92 syn keyword htmlArg contained declare defer dir disabled for frame | 93 syn keyword htmlArg contained declare defer dir disabled for frame |
93 syn keyword htmlArg contained headers hreflang lang language longdesc | 94 syn keyword htmlArg contained headers hreflang lang language longdesc |
94 syn keyword htmlArg contained multiple nohref nowrap object profile readonly | 95 syn keyword htmlArg contained multiple nohref nowrap object profile readonly |
95 syn keyword htmlArg contained rules scheme scope span standby style | 96 syn keyword htmlArg contained rules scheme scope span standby style |
96 syn keyword htmlArg contained summary tabindex valuetype version | 97 syn keyword htmlArg contained summary tabindex valuetype version |
98 | |
99 " html 5 arg names | |
100 syn keyword htmlArg contained contenteditable contextmenu draggable dropzone | |
101 syn keyword htmlArg contained hidden spellcheck title translate | |
97 | 102 |
98 " special characters | 103 " special characters |
99 syn match htmlSpecialChar "&#\=[0-9A-Za-z]\{1,8};" | 104 syn match htmlSpecialChar "&#\=[0-9A-Za-z]\{1,8};" |
100 | 105 |
101 " Comments (the real ones or the old netscape ones) | 106 " Comments (the real ones or the old netscape ones) |