summaryrefslogtreecommitdiffstats
path: root/runtime/indent/html.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-02-13 18:14:48 +0100
committerBram Moolenaar <Bram@vim.org>2021-02-13 18:14:48 +0100
commit942db23c9cb7532d68048530d749eb84ca94d0cd (patch)
tree13d89605923a2ccc490b83ae155e5791a92062a1 /runtime/indent/html.vim
parent0fa09676c25a0a4a01f339887b8bf40b4673621f (diff)
Update runtime files
Diffstat (limited to 'runtime/indent/html.vim')
-rw-r--r--runtime/indent/html.vim8
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/indent/html.vim b/runtime/indent/html.vim
index ec4fac549a..7019bd4a82 100644
--- a/runtime/indent/html.vim
+++ b/runtime/indent/html.vim
@@ -1,7 +1,7 @@
" Vim indent script for HTML
" Maintainer: Bram Moolenaar
" Original Author: Andy Wokula <anwoku@yahoo.de>
-" Last Change: 2020 Dec 11
+" Last Change: 2021 Jan 26
" Version: 1.0 "{{{
" Description: HTML indent script with cached state for faster indenting on a
" range of lines.
@@ -941,11 +941,11 @@ func! s:InsideTag(foundHtmlString)
let idx = match(text, '<' . s:tagname . '\s\+\zs\w')
endif
if idx == -1
- " after just "<tag" indent one level more
+ " after just "<tag" indent two levels more
let idx = match(text, '<' . s:tagname . '$')
if idx >= 0
- call cursor(lnum, idx)
- return virtcol('.') + shiftwidth()
+ call cursor(lnum, idx + 1)
+ return virtcol('.') - 1 + shiftwidth() * 2
endif
endif
if idx > 0