# HG changeset patch # User Bram Moolenaar # Date 1573049704 -3600 # Node ID c4d97a18af3704d346cbc3821c6f601a63aedbb1 # Parent ced72f20e07415a2b80f6ac9ef77078b5cfbe160 patch 8.1.2263: 'noesckeys' test fails in GUI Commit: https://github.com/vim/vim/commit/215ba3b63698f3755b2c4de66fc728cc14a8a590 Author: Bram Moolenaar Date: Wed Nov 6 15:07:07 2019 +0100 patch 8.1.2263: 'noesckeys' test fails in GUI Problem: 'noesckeys' test fails in GUI. Solution: Skip the test in the GUI. diff --git a/src/testdir/test_edit.vim b/src/testdir/test_edit.vim --- a/src/testdir/test_edit.vim +++ b/src/testdir/test_edit.vim @@ -1,9 +1,11 @@ " Test for edit functions -" + if exists("+t_kD") let &t_kD="[3;*~" endif +source check.vim + " Needed for testing basic rightleft: Test_edit_rightleft source view_util.vim @@ -1497,6 +1499,7 @@ func Test_edit_startinsert() endfunc func Test_edit_noesckeys() + CheckNotGui new " moves cursor when 'esckeys' is set diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -742,6 +742,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2263, +/**/ 2262, /**/ 2261,