aboutsummaryrefslogtreecommitdiff
path: root/runtime/indent/xml.vim
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-11-07 01:34:28 +0100
committerJustin M. Keyes <justinkz@gmail.com>2017-11-07 01:37:30 +0100
commita39bf019580d82f8ca5f9e8d99dd856418ffc491 (patch)
tree9040de854b2065059b7b41ab1c5d099b9174b1a8 /runtime/indent/xml.vim
parent599170de8304d74baa3e18df0929330e3773a14d (diff)
downloadrneovim-a39bf019580d82f8ca5f9e8d99dd856418ffc491.tar.gz
rneovim-a39bf019580d82f8ca5f9e8d99dd856418ffc491.tar.bz2
rneovim-a39bf019580d82f8ca5f9e8d99dd856418ffc491.zip
vim-patch:3ec574f2b549
Update runtime files. Includes changing &sw to shiftwidth() for all indent scripts. https://github.com/vim/vim/commit/3ec574f2b549f456f664f689d6da36dc5719aeb9
Diffstat (limited to 'runtime/indent/xml.vim')
-rw-r--r--runtime/indent/xml.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/indent/xml.vim b/runtime/indent/xml.vim
index dbe5be5f25..87ffb329b5 100644
--- a/runtime/indent/xml.vim
+++ b/runtime/indent/xml.vim
@@ -1,6 +1,6 @@
" Language: xml
" Maintainer: Johannes Zellner <johannes@zellner.org>
-" Last Change: 2012 Jul 25
+" Last Change: 2017 Jun 13
" Notes: 1) does not indent pure non-xml code (e.g. embedded scripts)
" 2) will be confused by unbalanced tags in comments
" or CDATA sections.
@@ -67,7 +67,7 @@ endfun
fun! <SID>XmlIndentSum(lnum, style, add)
let line = getline(a:lnum)
if a:style == match(line, '^\s*</')
- return (&sw *
+ return (shiftwidth() *
\ (<SID>XmlIndentWithPattern(line, b:xml_indent_open)
\ - <SID>XmlIndentWithPattern(line, b:xml_indent_close)
\ - <SID>XmlIndentWithPattern(line, '.\{-}/>'))) + a:add