Browse Source

adding features

master
lolson 9 years ago
parent
commit
0d6e0f5524
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      plugin/makecols.vim

+ 3
- 3
plugin/makecols.vim View File

@ -78,10 +78,10 @@ function! s:convert_selection_vert()
let lines = len(old_selection)
echom "Lines: " . lines
echom "Cols: " . g:makecols_cols
let rows = lines / g:makecols_cols
let rows = ceil(lines / g:makecols_cols)
echom "Rows: " . rows
let calc_rows = float2nr(ceil(rows))
echom "Rounded: " . calc_rows
" let calc_rows = float2nr(ceil(rows))
" echom "Rounded: " . calc_rows
let @z = ""
" For Loopage Goes here

Loading…
Cancel
Save