Skip to content

Commit

Permalink
patch 8.2.4152: block insert with double wide character fails
Browse files Browse the repository at this point in the history
Problem:    Block insert with double wide character fails.
Solution:   Adjust the expected output.
  • Loading branch information
brammool committed Jan 20, 2022
1 parent 57df9e8 commit fc6cceb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/testdir/test_utf8.vim
Expand Up @@ -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

Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -750,6 +750,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
4152,
/**/
4151,
/**/
Expand Down

0 comments on commit fc6cceb

Please sign in to comment.