comparison runtime/indent/html.vim @ 20965:59f93c2d2551

Update runtime files Commit: https://github.com/vim/vim/commit/73fef33014dbf21fc59e7e47fb091117868d82fb Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jun 21 22:12:03 2020 +0200 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Sun, 21 Jun 2020 22:15:04 +0200
parents bd7461db24b3
children 21fb2a3ad3ca
comparison
equal deleted inserted replaced
20964:be672fa6d129 20965:59f93c2d2551
1 " Vim indent script for HTML 1 " Vim indent script for HTML
2 " Header: "{{{ 2 " Header: "{{{
3 " Maintainer: Bram Moolenaar 3 " Maintainer: Bram Moolenaar
4 " Original Author: Andy Wokula <anwoku@yahoo.de> 4 " Original Author: Andy Wokula <anwoku@yahoo.de>
5 " Last Change: 2019 Mar 20 5 " Last Change: 2020 Jun 18
6 " Version: 1.0 6 " Version: 1.0
7 " Description: HTML indent script with cached state for faster indenting on a 7 " Description: HTML indent script with cached state for faster indenting on a
8 " range of lines. 8 " range of lines.
9 " Supports template systems through hooks. 9 " Supports template systems through hooks.
10 " Supports Closure stylesheets. 10 " Supports Closure stylesheets.
221 " 'wbr'. 221 " 'wbr'.
222 " Old HTML tags: 222 " Old HTML tags:
223 call s:AddITags(s:indent_tags, [ 223 call s:AddITags(s:indent_tags, [
224 \ 'a', 'abbr', 'acronym', 'address', 'b', 'bdo', 'big', 224 \ 'a', 'abbr', 'acronym', 'address', 'b', 'bdo', 'big',
225 \ 'blockquote', 'body', 'button', 'caption', 'center', 'cite', 'code', 225 \ 'blockquote', 'body', 'button', 'caption', 'center', 'cite', 'code',
226 \ 'colgroup', 'del', 'dfn', 'dir', 'div', 'dl', 'em', 'fieldset', 'font', 226 \ 'colgroup', 'dd', 'del', 'dfn', 'dir', 'div', 'dl', 'dt', 'em', 'fieldset', 'font',
227 \ 'form', 'frameset', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'head', 'html', 227 \ 'form', 'frameset', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'head', 'html',
228 \ 'i', 'iframe', 'ins', 'kbd', 'label', 'legend', 'li', 228 \ 'i', 'iframe', 'ins', 'kbd', 'label', 'legend', 'li',
229 \ 'map', 'menu', 'noframes', 'noscript', 'object', 'ol', 229 \ 'map', 'menu', 'noframes', 'noscript', 'object', 'ol',
230 \ 'optgroup', 'q', 's', 'samp', 'select', 'small', 'span', 'strong', 'sub', 230 \ 'optgroup', 'q', 's', 'samp', 'select', 'small', 'span', 'strong', 'sub',
231 \ 'sup', 'table', 'textarea', 'title', 'tt', 'u', 'ul', 'var', 'th', 'td', 231 \ 'sup', 'table', 'textarea', 'title', 'tt', 'u', 'ul', 'var', 'th', 'td',