diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-08-13 07:10:43 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-13 07:10:43 +0800 |
commit | d39361f5e014072eb3ade1999d80bdd9dd0f0e98 (patch) | |
tree | b9903a2dbef591692e5c7dbe5dc69c9a391382dd | |
parent | 7542286d6ad53f8250cd3575e9f3acde5f501c78 (diff) | |
download | rneovim-d39361f5e014072eb3ade1999d80bdd9dd0f0e98.tar.gz rneovim-d39361f5e014072eb3ade1999d80bdd9dd0f0e98.tar.bz2 rneovim-d39361f5e014072eb3ade1999d80bdd9dd0f0e98.zip |
vim-patch:9.0.1698: Test_map_restore_sid fails in GUI (#24682)
Problem: Test_map_restore_sid fails in GUI
Solution: Feed an unsimplified Ctrl-B
closes: vim/vim#12770
https://github.com/vim/vim/commit/7fe108990423535fa7cb804deae49d64831e25a9
-rw-r--r-- | test/old/testdir/test_maparg.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/old/testdir/test_maparg.vim b/test/old/testdir/test_maparg.vim index 46b65d45cf..1837511990 100644 --- a/test/old/testdir/test_maparg.vim +++ b/test/old/testdir/test_maparg.vim @@ -339,7 +339,7 @@ func Test_map_restore_sid() new source Xmapscript inoremap <buffer> <C-B> <Cmd>call RestoreMap()<CR> - call feedkeys("i\<CR>\<C-B>\<CR>", 'xt') + call feedkeys("i\<CR>\<*C-B>\<CR>", 'xt') call assert_equal(['', '42', '42'], getline(1, '$')) bwipe! |