From 1f585e421aab20889c8315e93ffc6d196544fd1f Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sat, 1 Jun 2019 21:47:10 +1200 Subject: Rename autoloaded interface function --- autoload/strip_trailing_whitespace.vim | 2 +- plugin/strip_trailing_whitespace.vim | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/autoload/strip_trailing_whitespace.vim b/autoload/strip_trailing_whitespace.vim index 681016e..f9e9a1e 100644 --- a/autoload/strip_trailing_whitespace.vim +++ b/autoload/strip_trailing_whitespace.vim @@ -1,6 +1,6 @@ " Wrapper function to strip both horizontal and vertical trailing whitespace, " return the cursor to its previous position, and report changes -function! strip_trailing_whitespace#Strip(start, end) abort +function! strip_trailing_whitespace#(start, end) abort " Save cursor position let pos = getpos('.') diff --git a/plugin/strip_trailing_whitespace.vim b/plugin/strip_trailing_whitespace.vim index 2cbfb5d..a20a8a1 100644 --- a/plugin/strip_trailing_whitespace.vim +++ b/plugin/strip_trailing_whitespace.vim @@ -16,4 +16,4 @@ let loaded_strip_trailing_whitespace = 1 " User command for the above command! -range=% StripTrailingWhitespace - \ call strip_trailing_whitespace#Strip(, ) + \ call strip_trailing_whitespace#(, ) -- cgit v1.2.3 From 980919d52ebff46e4c646b8c101b2e4e05d75c3a Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sat, 1 Jun 2019 21:51:41 +1200 Subject: Bump VERSION --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 4a36342..fd2a018 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.0.0 +3.1.0 -- cgit v1.2.3