From 24db19fc95e998f6fb5a12e0b62a2219456a471b Mon Sep 17 00:00:00 2001 From: lolson Date: Fri, 10 Jul 2015 13:25:28 -0500 Subject: [PATCH] testing --- plugin/makecols.vim | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/plugin/makecols.vim b/plugin/makecols.vim index bdeb9de..0558004 100644 --- a/plugin/makecols.vim +++ b/plugin/makecols.vim @@ -20,6 +20,9 @@ function! s:get_visual_selection() let c = 0 let no_of_cols = 6 let new_string = "" + let old_string = split($selection, "\n") + echom "Old String: " + echom old_string let @z = "" for i in lines @@ -42,7 +45,7 @@ endfunction function! s:replace_selected_text() execute "normal! \"zP" - echo "Just tried to replace the selection with the lines." + echo "Just tried to replace the selection." return "" endfunction