comparison src/testdir/test_paste.vim @ 16074:fa133cd14f87 v8.1.1042

patch 8.1.1042: the paste test doesn't work properly in the Windows console commit https://github.com/vim/vim/commit/832615be12bdb5d60b2850e2025592dc67217f37 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Mar 23 13:30:22 2019 +0100 patch 8.1.1042: the paste test doesn't work properly in the Windows console Problem: The paste test doesn't work properly in the Windows console. Solution: Disable the test.
author Bram Moolenaar <Bram@vim.org>
date Sat, 23 Mar 2019 13:45:05 +0100
parents aa6ecb272236
children 0422b14bce58
comparison
equal deleted inserted replaced
16073:9617861cbbd2 16074:fa133cd14f87
1 " Tests for bracketed paste and other forms of pasting. 1 " Tests for bracketed paste and other forms of pasting.
2 2
3 " Bracketed paste only works with "xterm". Not in GUI. 3 " Bracketed paste only works with "xterm". Not in GUI or Windows console.
4 if has('gui_running') 4 if has('gui_running') || has('win32')
5 finish 5 finish
6 endif 6 endif
7 set term=xterm 7 set term=xterm
8 8
9 source shared.vim 9 source shared.vim