diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-04-25 14:38:39 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-04-29 15:51:03 +0800 |
commit | 44269c73a32f13d39ead1fdc257a97fc18ae805c (patch) | |
tree | fd018045d6a96a2f341fd0461bdb393835bdb1d6 | |
parent | b5837e55e69602ce9716c8c04b1e2cb3188be8a5 (diff) | |
download | rneovim-44269c73a32f13d39ead1fdc257a97fc18ae805c.tar.gz rneovim-44269c73a32f13d39ead1fdc257a97fc18ae805c.tar.bz2 rneovim-44269c73a32f13d39ead1fdc257a97fc18ae805c.zip |
vim-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.
https://github.com/vim/vim/commit/2559a47823a6a7827631f2e6a0176d7afce2721c
-rw-r--r-- | src/nvim/testdir/test_mapping.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/testdir/test_mapping.vim b/src/nvim/testdir/test_mapping.vim index 604ae8a3f9..b1c2429511 100644 --- a/src/nvim/testdir/test_mapping.vim +++ b/src/nvim/testdir/test_mapping.vim @@ -430,8 +430,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 |