diff src/testdir/test_visual.vim @ 26587:b2bbc72183a5 v8.2.3823

patch 8.2.3823: test for visual replace is in wrong function Commit: https://github.com/vim/vim/commit/6ecf58b0d7d9b8fbba780d19d2e6c0f227df715b Author: Bram Moolenaar <Bram@vim.org> Date: Thu Dec 16 10:05:41 2021 +0000 patch 8.2.3823: test for visual replace is in wrong function Problem: Test for visual replace is in wrong function. Solution: Move it to another function.
author Bram Moolenaar <Bram@vim.org>
date Thu, 16 Dec 2021 11:15:03 +0100
parents 8da90cdcec68
children be5e01f3ee3b
line wrap: on
line diff
--- a/src/testdir/test_visual.vim
+++ b/src/testdir/test_visual.vim
@@ -234,10 +234,6 @@ func Test_virtual_replace()
   call assert_equal("\txaaaa", getline(1))
   set softtabstop&
 
-  call setline(1, "xã̳x")
-  normal gg0lvrb
-  call assert_equal("xbx", getline(1))
-
   enew!
   set noai bs&vim
   if exists('save_t_kD')
@@ -669,6 +665,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