view src/testdir/test_global.vim @ 18189:b5bf891fa92c v8.1.2089

patch 8.1.2089: do not get a hint that $TEST_FILTER was active Commit: https://github.com/vim/vim/commit/7b666c7883c905a0e1428b8bfa7ba062af2656e7 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Sep 27 21:25:00 2019 +0200 patch 8.1.2089: do not get a hint that $TEST_FILTER was active Problem: Do not get a hint that $TEST_FILTER was active. Solution: Mention $TEST_FILTER if no functions were executed.
author Bram Moolenaar <Bram@vim.org>
date Fri, 27 Sep 2019 21:30:03 +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