view src/testdir/test_plus_arg_edit.vim @ 12983:7a9c4a8b1ceb

patch 8.0.1367: terminal test hangs, executing abcde commit https://github.com/vim/vim/commit/461fe50fea245b2b199d92ebce4d9875d856bd27 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Dec 5 12:30:03 2017 +0100 patch 8.0.1367: terminal test hangs, executing abcde Problem: terminal test hangs, executing abcde. (Stucki) Solution: Rename abcde to abxde.
author Christian Brabandt <cb@256bit.org>
date Tue, 05 Dec 2017 12:45:04 +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