view src/testdir/test_global.vim @ 16792:cd9c0973e7ae v8.1.1398

patch 8.1.1398: duplicate line in MSVC build file commit https://github.com/vim/vim/commit/a8c99fb78e9d747c127e8878518d5a43837b022b Author: Bram Moolenaar <Bram@vim.org> Date: Sun May 26 13:14:02 2019 +0200 patch 8.1.1398: duplicate line in MSVC build file Problem: Duplicate line in MSVC build file. Solution: Remove the line. (Ken Takata, closes https://github.com/vim/vim/issues/4436)
author Bram Moolenaar <Bram@vim.org>
date Sun, 26 May 2019 13:15:04 +0200
parents 8e5ec22db3d8
children b8fd7364befd
line wrap: on
line source


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

func Test_nested_global()
  new
  call setline(1, ['nothing', 'found', 'found bad', 'bad'])
  call assert_fails('g/found/3v/bad/s/^/++/', 'E147')
  g/found/v/bad/s/^/++/
  call assert_equal(['nothing', '++found', 'found bad', 'bad'], getline(1, 4))
  bwipe!
endfunc