diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-11-07 01:09:09 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-11-07 01:16:42 +0100 |
commit | ef7af078ef41fabbf3ca9d25acb6a1062a0716a7 (patch) | |
tree | 29fff7cf7590879f3ab99e9ba141e8d6b149d846 /runtime/indent/rhelp.vim | |
parent | 8c6a92c6e2af2d5025b1be994802d61f39af2b9e (diff) | |
download | rneovim-ef7af078ef41fabbf3ca9d25acb6a1062a0716a7.tar.gz rneovim-ef7af078ef41fabbf3ca9d25acb6a1062a0716a7.tar.bz2 rneovim-ef7af078ef41fabbf3ca9d25acb6a1062a0716a7.zip |
vim-patch:cd5c8f825078
Update runtime files.
https://github.com/vim/vim/commit/cd5c8f82507822467232ab71e1ebbaae19595916
Diffstat (limited to 'runtime/indent/rhelp.vim')
-rw-r--r-- | runtime/indent/rhelp.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/indent/rhelp.vim b/runtime/indent/rhelp.vim index 9dc2031cb6..cf69ae3392 100644 --- a/runtime/indent/rhelp.vim +++ b/runtime/indent/rhelp.vim @@ -82,7 +82,7 @@ function GetRHelpIndent() let closeb = strlen(line2) - strlen(line3) let bb = openb - closeb - let ind = indent(lnum) + (bb * &sw) + let ind = indent(lnum) + (bb * shiftwidth()) if line =~ '^\s*}\s*$' let ind = indent(lnum) |