Browse Source

adding features

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

+ 1
- 3
plugin/makecols.vim View File

@ -88,12 +88,10 @@ function! s:convert_selection_vert()
let cols = g:makecols_cols
let sec = get(old_selection, c, "")
let i = 0
while i <= cols
let z = i
while i <= lines
let i = i + rows
let sec = get(old_selection, i, "")
let new_string = join([new_string, sec], "\t")
let i = z+1
endwhile
let new_string = join([new_string,""], "\n")
let c += 1

Loading…
Cancel
Save