28 lines
888 B
Diff
28 lines
888 B
Diff
From fc6ccebea668c49e9e617e0657421b6a8ed9df1e Mon Sep 17 00:00:00 2001
|
|
From: Bram Moolenaar <Bram@vim.org>
|
|
Date: Thu, 20 Jan 2022 12:22:35 +0000
|
|
Subject: [PATCH] patch 8.2.4152: block insert with double wide character fails
|
|
|
|
Problem: Block insert with double wide character fails.
|
|
Solution: Adjust the expected output.
|
|
---
|
|
src/testdir/test_utf8.vim | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/testdir/test_utf8.vim b/src/testdir/test_utf8.vim
|
|
index 42a46fd..32cec0f 100644
|
|
--- a/src/testdir/test_utf8.vim
|
|
+++ b/src/testdir/test_utf8.vim
|
|
@@ -7,7 +7,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
|
|
|
|
--
|
|
2.33.0
|
|
|