diff options
author | David Barnett <davidbarnett2@gmail.com> | 2016-02-02 23:03:53 -0800 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-02-07 01:13:30 -0500 |
commit | cc520602458c693645a9d2ad75fcf7796bc38e0c (patch) | |
tree | 9d241e4d9cff533d7b2f501f281801590521e116 /runtime/indent | |
parent | bd3ea7227ee04a913c1cc5487979ad67dda290f9 (diff) | |
download | rneovim-cc520602458c693645a9d2ad75fcf7796bc38e0c.tar.gz rneovim-cc520602458c693645a9d2ad75fcf7796bc38e0c.tar.bz2 rneovim-cc520602458c693645a9d2ad75fcf7796bc38e0c.zip |
vim-patch:541f92 #4173
Updated runtime files.
https://github.com/vim/vim/commit/541f92
Diffstat (limited to 'runtime/indent')
-rw-r--r-- | runtime/indent/html.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/indent/html.vim b/runtime/indent/html.vim index 71443abe5b..7eb963b7b2 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 Jan 11 +" Last Change: 2015 Jun 12 " Version: 1.0 " Description: HTML indent script with cached state for faster indenting on a " range of lines. @@ -94,7 +94,7 @@ func! HtmlIndent_CheckUserSettings() let autotags = g:html_indent_autotags endif let b:hi_removed_tags = {} - if autotags + if len(autotags) > 0 call s:RemoveITags(b:hi_removed_tags, split(autotags, ",")) endif |