Skip to content

Commit 832615b

Browse files
committed
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.
1 parent 295e3ba commit 832615b

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/testdir/test_paste.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
" Tests for bracketed paste and other forms of pasting.
22

3-
" Bracketed paste only works with "xterm". Not in GUI.
4-
if has('gui_running')
3+
" Bracketed paste only works with "xterm". Not in GUI or Windows console.
4+
if has('gui_running') || has('win32')
55
finish
66
endif
77
set term=xterm

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -775,6 +775,8 @@ static char *(features[]) =
775775

776776
static int included_patches[] =
777777
{ /* Add new patch number below this line */
778+
/**/
779+
1042,
778780
/**/
779781
1041,
780782
/**/

0 commit comments

Comments
 (0)