blob: 411e095c718de7ad1fb9b650266cd8c2a7305665 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
let g:test_clip = { '+': [''], '*': [''], }
let s:methods = {}
let g:cliplossy = 0
let g:cliperror = 0
function! s:methods.get(reg)
if g:cliperror
return 0
end
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)
if a:reg == '"'
call s:methods.set(a:lines,a:regtype,'+')
call s:methods.set(a:lines,a:regtype,'*')
return 0
end
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
|