view src/testdir/test_global.vim @ 12783:afd8a4f36301 v8.0.1269

patch 8.0.1269: effect of autocommands on marks is not tested commit https://github.com/vim/vim/commit/aace21581345aa51c09d809ab3744a943a71c879 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Nov 5 16:23:10 2017 +0100 patch 8.0.1269: effect of autocommands on marks is not tested Problem: Effect of autocommands on marks is not tested. Solution: Add a couple of tests. (James McCoy, closes https://github.com/vim/vim/issues/2271)
author Christian Brabandt <cb@256bit.org>
date Sun, 05 Nov 2017 16:30:04 +0100
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