diff options
author | Shougo Matsushita <Shougo.Matsu@gmail.com> | 2016-10-04 23:26:07 +0900 |
---|---|---|
committer | Shougo Matsushita <Shougo.Matsu@gmail.com> | 2016-10-04 23:33:28 +0900 |
commit | d4f32d078970db17305966655ca1cfda038c9b8e (patch) | |
tree | 757b7a33f2f51c4c1a22a02695c0a3befd523945 /runtime/indent | |
parent | 31a29e41b0aad1c41f05754c2fff4b083cc875e9 (diff) | |
download | rneovim-d4f32d078970db17305966655ca1cfda038c9b8e.tar.gz rneovim-d4f32d078970db17305966655ca1cfda038c9b8e.tar.bz2 rneovim-d4f32d078970db17305966655ca1cfda038c9b8e.zip |
vim-patch:939a1ab
Updated runtime files.
https://github.com/vim/vim/commit/939a1abe935a539f2d4c90a56cb0682cbaf3bbb0
Diffstat (limited to 'runtime/indent')
-rw-r--r-- | runtime/indent/html.vim | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/runtime/indent/html.vim b/runtime/indent/html.vim index 8aaf82e21f..828bc3120b 100644 --- a/runtime/indent/html.vim +++ b/runtime/indent/html.vim @@ -2,7 +2,7 @@ " Header: "{{{ " Maintainer: Bram Moolenaar " Original Author: Andy Wokula <anwoku@yahoo.de> -" Last Change: 2015 Sep 25 +" Last Change: 2016 Mar 30 " Version: 1.0 " Description: HTML indent script with cached state for faster indenting on a " range of lines. @@ -240,13 +240,13 @@ call s:AddITags(s:indent_tags, [ \ 'sup', 'table', 'textarea', 'title', 'tt', 'u', 'ul', 'var', 'th', 'td', \ 'tr', 'tbody', 'tfoot', 'thead']) -" Tags added 2011 Sep 09 (especially HTML5 tags): +" New HTML5 elements: call s:AddITags(s:indent_tags, [ \ 'area', 'article', 'aside', 'audio', 'bdi', 'canvas', - \ 'command', 'datalist', 'details', 'embed', 'figure', 'footer', - \ 'header', 'group', 'keygen', 'mark', 'math', 'meter', 'nav', 'output', - \ 'progress', 'ruby', 'section', 'svg', 'texture', 'time', 'video', - \ 'wbr', 'text']) + \ 'command', 'data', 'datalist', 'details', 'embed', 'figcaption', + \ 'figure', 'footer', 'header', 'keygen', 'mark', 'meter', 'nav', 'output', + \ 'progress', 'rp', 'rt', 'ruby', 'section', 'source', 'summary', 'svg', + \ 'time', 'track', 'video', 'wbr']) " Tags added for web components: call s:AddITags(s:indent_tags, [ |