diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-03-23 13:30:22 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-03-23 13:30:22 +0100 |
commit | 832615be12bdb5d60b2850e2025592dc67217f37 (patch) | |
tree | a2664ba4e8352a4bf8ad6f9b2ae1b93710bf87d7 /src/testdir/test_paste.vim | |
parent | 295e3ba31f76818f195c654df506c88cb65f9289 (diff) | |
download | vim-git-832615be12bdb5d60b2850e2025592dc67217f37.tar.gz |
patch 8.1.1042: the paste test doesn't work properly in the Windows consolev8.1.1042
Problem: The paste test doesn't work properly in the Windows console.
Solution: Disable the test.
Diffstat (limited to 'src/testdir/test_paste.vim')
-rw-r--r-- | src/testdir/test_paste.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testdir/test_paste.vim b/src/testdir/test_paste.vim index 65f300cef..f3664f6a6 100644 --- a/src/testdir/test_paste.vim +++ b/src/testdir/test_paste.vim @@ -1,7 +1,7 @@ " Tests for bracketed paste and other forms of pasting. -" Bracketed paste only works with "xterm". Not in GUI. -if has('gui_running') +" Bracketed paste only works with "xterm". Not in GUI or Windows console. +if has('gui_running') || has('win32') finish endif set term=xterm |