comparison src/testdir/test_paste.vim @ 10686:23ada4caa13b v8.0.0233

patch 8.0.0233: paste test fails in the GUI commit https://github.com/vim/vim/commit/bff6ad133195145f810645c0bde7a2a1fdfc37b8 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jan 24 19:18:13 2017 +0100 patch 8.0.0233: paste test fails in the GUI Problem: The paste test fails if the GUI is being used. Solution: Skip the test in the GUI.
author Christian Brabandt <cb@256bit.org>
date Tue, 24 Jan 2017 19:30:04 +0100
parents d564e73ff9ee
children 689e88afdd11
comparison
equal deleted inserted replaced
10685:170854b686f5 10686:23ada4caa13b
1 " Tests for bracketed paste. 1 " Tests for bracketed paste.
2 2
3 " Bracketed paste only works with "xterm". 3 " Bracketed paste only works with "xterm". Not in GUI.
4 if has('gui_running')
5 finish
6 endif
4 set term=xterm 7 set term=xterm
5 8
6 func Test_paste_normal_mode() 9 func Test_paste_normal_mode()
7 new 10 new
8 call setline(1, ['a', 'b', 'c']) 11 call setline(1, ['a', 'b', 'c'])