Browse Source

adding features

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

+ 3
- 2
plugin/makecols.vim View File

@ -86,8 +86,9 @@ function! s:convert_selection_vert()
if (c == lines)
break
endif
echom get(old_selection, c, "")
echom get(old_selection, a, "")
let char1 = get(old_selection, c, "")
let char2 = get(old_selection, a, "")
echo join([char1, char2], "\t")
let a += 1
let c += 1
endfor

Loading…
Cancel
Save