diff options
author | Sean Dewar <seandewar@users.noreply.github.com> | 2022-02-13 19:02:06 +0000 |
---|---|---|
committer | Sean Dewar <seandewar@users.noreply.github.com> | 2022-02-14 17:29:49 +0000 |
commit | 2b75ac7aa9cfc6f8b49b4399c02bada45af450d4 (patch) | |
tree | b1df32c6d99d015b15b732f998fc630e0beaa4ba /src | |
parent | afbed8cb75af714a636128c4ad7fb4be6edf7727 (diff) | |
download | rneovim-2b75ac7aa9cfc6f8b49b4399c02bada45af450d4.tar.gz rneovim-2b75ac7aa9cfc6f8b49b4399c02bada45af450d4.tar.bz2 rneovim-2b75ac7aa9cfc6f8b49b4399c02bada45af450d4.zip |
vim-patch:8.2.4152: block insert with double wide character fails
Problem: Block insert with double wide character fails.
Solution: Adjust the expected output.
https://github.com/vim/vim/commit/fc6ccebea668c49e9e617e0657421b6a8ed9df1e
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/test_utf8.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_utf8.vim b/src/nvim/testdir/test_utf8.vim index 36776d5a64..9b010a5dbc 100644 --- a/src/nvim/testdir/test_utf8.vim +++ b/src/nvim/testdir/test_utf8.vim @@ -8,7 +8,7 @@ func Test_visual_block_insert() new call setline(1, ["aaa", "あああ", "bbb"]) exe ":norm! gg0l\<C-V>jjIx\<Esc>" - call assert_equal(['axaa', 'xあああ', 'bxbb'], getline(1, '$')) + call assert_equal(['axaa', ' xあああ', 'bxbb'], getline(1, '$')) bwipeout! endfunc |