Browse Source

testing

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

+ 4
- 1
plugin/makecols.vim View File

@ -20,6 +20,9 @@ function! s:get_visual_selection()
let c = 0 let c = 0
let no_of_cols = 6 let no_of_cols = 6
let new_string = "" let new_string = ""
let old_string = split($selection, "\n")
echom "Old String: "
echom old_string
let @z = "" let @z = ""
for i in lines for i in lines
@ -42,7 +45,7 @@ endfunction
function! s:replace_selected_text() function! s:replace_selected_text()
execute "normal! \"zP" execute "normal! \"zP"
echo "Just tried to replace the selection with the lines."
echo "Just tried to replace the selection."
return "" return ""
endfunction endfunction

Loading…
Cancel
Save