diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2022-02-15 20:36:01 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-15 20:36:01 +0800 |
| commit | 0072a97b2e577ee9363651f332baaf5898a52167 (patch) | |
| tree | bb767733b65a43f2b1397d5be1f9f5afcc667679 /src/nvim/testdir | |
| parent | 8cc881e4f4c2edc185067f6ec9ff78f6a79a4fd0 (diff) | |
| parent | 8f3e56ed3a3b05e19a9c5b9c812596cc87281bf9 (diff) | |
| download | rneovim-0072a97b2e577ee9363651f332baaf5898a52167.tar.gz rneovim-0072a97b2e577ee9363651f332baaf5898a52167.tar.bz2 rneovim-0072a97b2e577ee9363651f332baaf5898a52167.zip | |
Merge pull request #17411 from zeertzjq/vim-8.2.3820
vim-patch:8.2.{3820,3823}: "vrc" does not replace composing characters
Diffstat (limited to 'src/nvim/testdir')
| -rw-r--r-- | src/nvim/testdir/test_visual.vim | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_visual.vim b/src/nvim/testdir/test_visual.vim index 4650d4e3df..ae8f9ba70b 100644 --- a/src/nvim/testdir/test_visual.vim +++ b/src/nvim/testdir/test_visual.vim @@ -636,6 +636,11 @@ func Test_characterwise_visual_mode() normal v$rx call assert_equal(['x'], getline(1, '$')) + " replace a character with composing characters + call setline(1, "xã̳x") + normal gg0lvrb + call assert_equal("xbx", getline(1)) + bwipe! endfunc |