aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir/test_global.vim
blob: be8aa69623a8a52eda4ae31adef9e95ac9d61ef3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11

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