diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-10-29 06:39:10 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-10-29 06:44:02 +0100 |
commit | 5c4a4217352edf82d32c03e6bec8c64b8f16a28c (patch) | |
tree | 80e4033cb4ac954fd463eb1a790e1fed0248b47d /runtime/indent | |
parent | c7513368f0e84da7ff3968c5b2912fa6ad15ab05 (diff) | |
download | rneovim-5c4a4217352edf82d32c03e6bec8c64b8f16a28c.tar.gz rneovim-5c4a4217352edf82d32c03e6bec8c64b8f16a28c.tar.bz2 rneovim-5c4a4217352edf82d32c03e6bec8c64b8f16a28c.zip |
vim-patch:98ef233e14fa
Update runtime files. Convert a couple of help files to utf-8.
https://github.com/vim/vim/commit/98ef233e14faaaf42e0342da1803d493ce0337b2
Diffstat (limited to 'runtime/indent')
-rw-r--r-- | runtime/indent/html.vim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/indent/html.vim b/runtime/indent/html.vim index b105dcabc9..eb00ea949b 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: 2018 Mar 09 +" Last Change: 2018 Mar 12 " Version: 1.0 " Description: HTML indent script with cached state for faster indenting on a " range of lines. @@ -233,9 +233,9 @@ call s:AddITags(s:indent_tags, [ call s:AddITags(s:indent_tags, [ \ 'area', 'article', 'aside', 'audio', 'bdi', 'canvas', \ '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']) + \ 'figure', 'footer', 'header', 'keygen', 'main', '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, [ |