neovim/test/functional/clipboard/autoload/provider/clipboard.vim
2015-04-05 11:34:13 +02:00

25 lines
512 B
VimL

let g:test_clip = { '+': [''], '*': [''], }
let s:methods = {}
let g:cliplossy = 0
function! s:methods.get(reg)
if g:cliplossy
" behave like pure text clipboard
return g:test_clip[a:reg][0]
else
"behave like VIMENC clipboard
return g:test_clip[a:reg]
end
endfunction
function! s:methods.set(lines, regtype, reg)
let g:test_clip[a:reg] = [a:lines, a:regtype]
endfunction
function! provider#clipboard#Call(method, args)
return call(s:methods[a:method],a:args,s:methods)
endfunction