aboutsummaryrefslogtreecommitdiffstats
path: root/bundle/copy/autoload/copy.vim
blob: c71c6d69125998452ab7ccc0bbb769b4b42fceb0 (plain)
1
2
3
4
function! copy#Copy(start_line, end_line)
	silent execute a:start_line . ',' . a:end_line . 'y'
	silent call system('pbcopy', getreg('@'))
endfunction