From 3ec574f2b549f456f664f689d6da36dc5719aeb9 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 13 Jun 2017 18:12:01 +0200 Subject: Update runtime files. Includes changing &sw to shiftwidth() for all indent scripts. --- runtime/indent/pov.vim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'runtime/indent/pov.vim') diff --git a/runtime/indent/pov.vim b/runtime/indent/pov.vim index 2b197635a..e806756c8 100644 --- a/runtime/indent/pov.vim +++ b/runtime/indent/pov.vim @@ -1,7 +1,7 @@ " Vim indent file " Language: PoV-Ray Scene Description Language " Maintainer: David Necas (Yeti) -" Last Change: 2002-10-20 +" Last Change: 2017 Jun 13 " URI: http://trific.ath.cx/Ftp/vim/indent/pov.vim " Only load this indent file when no other was loaded. @@ -75,9 +75,9 @@ function GetPoVRayIndent() " opening line. let cur = s:MatchCount(v:lnum, '^\s*\%(#\s*\%(end\|else\)\>\|[]})]\)') if cur > 0 - let final = plind + (chg - cur) * &sw + let final = plind + (chg - cur) * shiftwidth() else - let final = plind + chg * &sw + let final = plind + chg * shiftwidth() endif return final < 0 ? 0 : final -- cgit v1.2.1