diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index 01af8ff..4c3af2e 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -1041,7 +1041,7 @@ function s:CommentBlock(top, bottom, lSide, rSide, forceNested ) if s:Multipart() "stick the right delimiter down - let theLine = strpart(theLine, 0, rSide+strlen(leftSpaced)) . rightSpaced . strpart(theLine, rSide+strlen(rightSpaced)) + let theLine = strpart(theLine, 0, rSide+strlen(leftSpaced)) . rightSpaced . strpart(theLine, rSide+strlen(leftSpaced)) let firstLeftDelim = s:FindDelimiterIndex(b:left, theLine) let lastRightDelim = s:LastIndexOfDelim(b:right, theLine)