From 09d5cdee7df3abba7ffd8791de56fed5bb0564de Mon Sep 17 00:00:00 2001 From: lolson Date: Mon, 13 Jul 2015 12:11:06 -0500 Subject: [PATCH] adding features --- plugin/makecols.vim | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugin/makecols.vim b/plugin/makecols.vim index bb71f55..21b10aa 100644 --- a/plugin/makecols.vim +++ b/plugin/makecols.vim @@ -86,8 +86,9 @@ function! s:convert_selection_vert() if (c == lines) break endif - echom get(old_selection, c, "") - echom get(old_selection, a, "") + let char1 = get(old_selection, c, "") + let char2 = get(old_selection, a, "") + echo join([char1, char2], "\t") let a += 1 let c += 1 endfor