Gitiles
Code Review
Sign In
gerrit.omnirom.org
/
android_external_vim
/
fc8f1118e7ccd65b0537e47e6323c93a1df6a61a
/
.
/
src
/
testdir
/
test_global.vim
blob: be8aa69623a8a52eda4ae31adef9e95ac9d61ef3 [
file
] [
log
] [
blame
]
func
Test_yank_put_clipboard
()
new
call setline
(
1
,
[
'a'
,
'b'
,
'c'
])
set
clipboard
=
unnamed
g
/^/
normal yyp
call assert_equal
([
'a'
,
'a'
,
'b'
,
'b'
,
'c'
,
'c'
],
getline
(
1
,
6
))
set
clipboard
&
bwipe
!
endfunc