Browse Source

adding features

master
lolson 9 years ago
parent
commit
13af897c27
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      plugin/makecols.vim

+ 2
- 2
plugin/makecols.vim View File

@ -77,8 +77,8 @@ function! s:convert_selection_vert()
let old_selection = split(selection, ",") let old_selection = split(selection, ",")
let lines = len(old_selection) let lines = len(old_selection)
let rows = lines / g:makecols_cols let rows = lines / g:makecols_cols
let rows = floor(rows)
echom rows
let rows = float2nr(round(rows))
echom "Rows" . rows
let @z = "" let @z = ""
" For Loopage Goes here " For Loopage Goes here

Loading…
Cancel
Save