commit | 036986f1507d223549d110af300144468bd3a1f7 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Thu Mar 16 17:41:02 2017 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Thu Mar 16 17:41:02 2017 +0100 |
tree | 4ceb878909e769f23d6deeae3bbb03d16e974f0d | |
parent | 8820b48654b62472821d9b155fe03ab7ac13a05c [diff] [blame] |
Update runtime files.
diff --git a/runtime/indent/framescript.vim b/runtime/indent/framescript.vim index e35d00e..f9a274e 100644 --- a/runtime/indent/framescript.vim +++ b/runtime/indent/framescript.vim
@@ -30,11 +30,11 @@ let ind = indent(lnum) if getline(lnum) =~? '^\s*\%(If\|Loop\|Sub\)' - let ind = ind + &sw + let ind = ind + shiftwidth() endif if getline(v:lnum) =~? '^\s*\%(Else\|End\%(If\|Loop\|Sub\)\)' - let ind = ind - &sw + let ind = ind - shiftwidth() endif return ind