Browse Source

adding features

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

+ 1
- 1
plugin/makecols.vim View File

@ -80,7 +80,7 @@ function! s:convert_selection_vert()
echom "Cols: " . g:makecols_cols echom "Cols: " . g:makecols_cols
let rows = lines / g:makecols_cols let rows = lines / g:makecols_cols
echom "Rows: " . rows echom "Rows: " . rows
let calc_rows = float2nr(round(rows))
let calc_rows = ceil(rows)
echom "Rounded: " . calc_rows echom "Rounded: " . calc_rows
let @z = "" let @z = ""

Loading…
Cancel
Save