From c702a05dbaa1ad35ff9498690618084694eaed5c Mon Sep 17 00:00:00 2001 From: lolson Date: Mon, 13 Jul 2015 10:40:23 -0500 Subject: [PATCH] adding features --- plugin/makecols.vim | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/plugin/makecols.vim b/plugin/makecols.vim index 7fb2b2a..3776d20 100644 --- a/plugin/makecols.vim +++ b/plugin/makecols.vim @@ -76,10 +76,12 @@ function! s:convert_selection_vert() let selection = s:get_visual_selection() let old_selection = split(selection, ",") let lines = len(old_selection) + echom "Lines: " . lines + echom "Cols: " . g:makecols_cols let rows = lines / g:makecols_cols - echom "Rows " . rows + echom "Rows: " . rows let calc_rows = float2nr(round(rows)) - echom "Calc Rows " . calc_rows + echom "Rounded: " . calc_rows let @z = "" " For Loopage Goes here