mirror of
https://github.com/neovim/neovim.git
synced 2024-12-29 14:41:06 -07:00
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:
parent
afbed8cb75
commit
2b75ac7aa9
@ -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
|
||||
|
||||
|
@ -28,7 +28,7 @@ describe('utf8', function()
|
||||
expect([[
|
||||
start:
|
||||
axaa
|
||||
xあああ
|
||||
xあああ
|
||||
bxbb]])
|
||||
end)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user