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.
fc6ccebea6
This commit is contained in:
Sean Dewar 2022-02-13 19:02:06 +00:00
parent afbed8cb75
commit 2b75ac7aa9
No known key found for this signature in database
GPG Key ID: 08CC2C83AD41B581
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -28,7 +28,7 @@ describe('utf8', function()
expect([[
start:
axaa
xあああ
xあああ
bxbb]])
end)