Browse Source

adding features

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

+ 1
- 1
plugin/makecols.vim View File

@ -97,7 +97,6 @@ function! s:convert_selection_vert()
let pos = row
while col < cols
let col += 1
let pos = row + rows
echom "ROW: " . row . " COL: " . col . " POS: " . pos
let content = get(old_selection, pos, "blank")
if (col == 0)
@ -105,6 +104,7 @@ function! s:convert_selection_vert()
else
let new_string = join([new_string, content], "\t")
endif
let pos = row + rows
endwhile
let new_string = join([new_string,""], "\n")
let row += 1

Loading…
Cancel
Save