From e487002f035b882c176bd82871237957bfb56ebc Mon Sep 17 00:00:00 2001 From: lolson Date: Thu, 9 Jul 2015 16:14:34 -0500 Subject: [PATCH] testing --- plugin/makecols.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/makecols.vim b/plugin/makecols.vim index bd62aa5..a34b5ee 100644 --- a/plugin/makecols.vim +++ b/plugin/makecols.vim @@ -10,7 +10,7 @@ endfunction function! s:makecols() let selection = $selection let lines = getline("'<")[getpos("'<")[2]-1:getpos("'>")[2]] - return s:beep() + return lines endfunction @@ -18,7 +18,7 @@ endfunction if !exists("g:makecols_no_mappings") || ! g:makecols_no_mappings - vmap mc :call makecols() + vnoremap mc :call makecols() endif