# HG changeset patch # User Bram Moolenaar # Date 1571262303 -7200 # Node ID 5b12fd0c39c3e81402b2b8c09d5da68c2e56d495 # Parent 36a844120cd63b7b6f582b2dc86c800be784013a patch 8.1.2167: mapping test fails on MS-Windows Commit: https://github.com/vim/vim/commit/2559a47823a6a7827631f2e6a0176d7afce2721c Author: Bram Moolenaar Date: Wed Oct 16 23:33:12 2019 +0200 patch 8.1.2167: mapping test fails on MS-Windows Problem: Mapping test fails on MS-Windows. Solution: Remove all the existing Insert-mode mappings. diff --git a/src/testdir/test_mapping.vim b/src/testdir/test_mapping.vim --- a/src/testdir/test_mapping.vim +++ b/src/testdir/test_mapping.vim @@ -444,8 +444,8 @@ func Test_error_in_map_expr() endfunc func Test_list_mappings() - " Remove default Mac mapping - silent! iunmap + " Remove default mappings + imapclear inoremap CtrlM inoremap AltS diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -754,6 +754,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2167, +/**/ 2166, /**/ 2165,