From f8966c3591c9e7ef822c6e08bf09098d8b1712dd Mon Sep 17 00:00:00 2001 From: lolson Date: Mon, 13 Jul 2015 12:00:44 -0500 Subject: [PATCH] adding features --- plugin/makecols.vim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugin/makecols.vim b/plugin/makecols.vim index 2dabf73..4c21717 100644 --- a/plugin/makecols.vim +++ b/plugin/makecols.vim @@ -79,15 +79,15 @@ function! s:convert_selection_vert() let lines = len(old_selection) * 1.0 let rows = (lines / g:makecols_cols) * 1.0 let rows = float2nr(ceil(rows)) - let cols = list[g:makecols_cols:] + let cols = list["g:makecols_cols":] echom cols let @z = "" " For Loopage Goes here let a = rows for i in old_selection - echom old_selection[c] - echom old_selection[a] + " echom old_selection[c] + " echom old_selection[a] let a += 1 let c += 1 endfor