From 13af897c271780dc27414977ff250d26e9738634 Mon Sep 17 00:00:00 2001 From: lolson Date: Mon, 13 Jul 2015 10:26:50 -0500 Subject: [PATCH] adding features --- plugin/makecols.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/makecols.vim b/plugin/makecols.vim index 2220479..5bdd844 100644 --- a/plugin/makecols.vim +++ b/plugin/makecols.vim @@ -77,8 +77,8 @@ function! s:convert_selection_vert() let old_selection = split(selection, ",") let lines = len(old_selection) let rows = lines / g:makecols_cols - let rows = floor(rows) - echom rows + let rows = float2nr(round(rows)) + echom "Rows" . rows let @z = "" " For Loopage Goes here