view src/testdir/test_plus_arg_edit.vim @ 13428:b82547f4a465

Added tag v8.0.1588 for changeset b85526d90aba302de98d23374dff884d2d6fd021
author Christian Brabandt <cb@256bit.org>
date Wed, 07 Mar 2018 22:15:06 +0100
parents 9e04de2aa738
children c1ead25ed819
line wrap: on
line source

" Tests for complicated + argument to :edit command
function Test_edit()
  call writefile(["foo|bar"], "Xfile1") 
  call writefile(["foo/bar"], "Xfile2") 
  edit +1|s/|/PIPE/|w Xfile1| e Xfile2|1 | s/\//SLASH/|w
  call assert_equal(["fooPIPEbar"], readfile("Xfile1"))
  call assert_equal(["fooSLASHbar"], readfile("Xfile2"))
  call delete('Xfile1')
  call delete('Xfile2')
endfunction