mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06: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
|
new
|
||||||
call setline(1, ["aaa", "あああ", "bbb"])
|
call setline(1, ["aaa", "あああ", "bbb"])
|
||||||
exe ":norm! gg0l\<C-V>jjIx\<Esc>"
|
exe ":norm! gg0l\<C-V>jjIx\<Esc>"
|
||||||
call assert_equal(['axaa', 'xあああ', 'bxbb'], getline(1, '$'))
|
call assert_equal(['axaa', ' xあああ', 'bxbb'], getline(1, '$'))
|
||||||
bwipeout!
|
bwipeout!
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
|
@ -28,7 +28,7 @@ describe('utf8', function()
|
|||||||
expect([[
|
expect([[
|
||||||
start:
|
start:
|
||||||
axaa
|
axaa
|
||||||
xあああ
|
xあああ
|
||||||
bxbb]])
|
bxbb]])
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user