From 8b305ee50273a07ab1c9af9618308326ce818043 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 20 Jul 2018 20:36:01 +1200 Subject: Handle ranges correctly --- plugin/strip_trailing_whitespace.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugin') diff --git a/plugin/strip_trailing_whitespace.vim b/plugin/strip_trailing_whitespace.vim index 75438d9..ed9ad66 100644 --- a/plugin/strip_trailing_whitespace.vim +++ b/plugin/strip_trailing_whitespace.vim @@ -52,8 +52,8 @@ function s:StripHorizontal(start, end) abort let l:count = 0 " Iterate through buffer - let l:num = 1 - while l:num <= line('$') + let l:num = a:start + while l:num <= a:end " If the line has trailing whitespace, strip it off and bump the count let l:line = getline(l:num) -- cgit v1.2.3