diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-10-16 23:33:12 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-10-16 23:33:12 +0200 |
commit | 2559a47823a6a7827631f2e6a0176d7afce2721c (patch) | |
tree | 4b0ca0890fefa2f4a1cb502d6422be51ca418a63 | |
parent | 4a4981b7cd57b0b2289ed4f9d621ef4d90d767f0 (diff) | |
download | vim-git-8.1.2167.tar.gz |
patch 8.1.2167: mapping test fails on MS-Windowsv8.1.2167
Problem: Mapping test fails on MS-Windows.
Solution: Remove all the existing Insert-mode mappings.
-rw-r--r-- | src/testdir/test_mapping.vim | 4 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/testdir/test_mapping.vim b/src/testdir/test_mapping.vim index d3ae61541..4ba364598 100644 --- 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 <D-v> + " Remove default mappings + imapclear inoremap <C-M> CtrlM inoremap <A-S> AltS diff --git a/src/version.c b/src/version.c index c7d0ace48..3bcd910c1 100644 --- 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, |