changeset 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 331a5d7a794a
children c929ca14d8a9
files src/testdir/test_visual.vim src/version.c
diffstat 2 files changed, 7 insertions(+), 4 deletions(-) [+]
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
 
--- a/src/version.c
+++ b/src/version.c
@@ -750,6 +750,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    3823,
+/**/
     3822,
 /**/
     3821,