From 8f6b993697ddcfc75b4c9806fecc387c460ccbb3 Mon Sep 17 00:00:00 2001 From: lolson Date: Mon, 13 Jul 2015 15:55:26 -0500 Subject: [PATCH] adding features --- plugin/makecols.vim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugin/makecols.vim b/plugin/makecols.vim index 2279a9a..e01975c 100644 --- a/plugin/makecols.vim +++ b/plugin/makecols.vim @@ -93,8 +93,9 @@ function! s:convert_selection_vert() let new_string = join([new_string, content], "") endif let col = row + let pos = row while col < cols - let pos = col + rows + let pos = pos + rows echom "ROW: " . row . " COL: " . col . " POS: " . pos let content = get(old_selection, pos, "blank") if (col == 0)