From 1262838f6db23a2da0081495d04cde5a7211fb2c Mon Sep 17 00:00:00 2001 From: lolson Date: Fri, 10 Jul 2015 13:07:44 -0500 Subject: [PATCH] testing --- plugin/makecols.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/makecols.vim b/plugin/makecols.vim index 4602332..9434765 100644 --- a/plugin/makecols.vim +++ b/plugin/makecols.vim @@ -24,7 +24,7 @@ function! s:get_visual_selection() for i in lines " start combining if (c == 0) - let new_string = lines[i] + let new_string = join([new_string, lines[i]], "") else if (c % no_of_cols) let new_string = join([new_string, lines[i]], "\t")