]> granicus.if.org Git - vim/commitdiff
patch 8.2.3088: with 'virtualedit' set to "block" Visual highlight is wrong v8.2.3088
authorBram Moolenaar <Bram@vim.org>
Sat, 3 Jul 2021 13:08:37 +0000 (15:08 +0200)
committerBram Moolenaar <Bram@vim.org>
Sat, 3 Jul 2021 13:08:37 +0000 (15:08 +0200)
Problem:    With 'virtualedit' set to "block" Visual highlight is wrong after
            using "$".  (Marco Trosi)
Solution:   Do not set w_old_cursor_lcol to MAXCOL. (closes #8495)

src/drawscreen.c
src/testdir/dumps/Test_visual_block_with_virtualedit.dump [new file with mode: 0644]
src/testdir/test_visual.vim
src/version.c

index bb0d8878e843a5e1280aad217d072dc503a52f4c..77a8a7b2768444d6c178549f68d3c0819ff75c7c 100644 (file)
@@ -2007,7 +2007,9 @@ win_update(win_T *wp)
                ve_flags = save_ve_flags;
 #endif
                ++toc;
-               if (curwin->w_curswant == MAXCOL)
+               // Highlight to the end of the line, unless 'virtualedit' has
+               // "block".
+               if (curwin->w_curswant == MAXCOL && !(ve_flags & VE_BLOCK))
                    toc = MAXCOL;
 
                if (fromc != wp->w_old_cursor_fcol
diff --git a/src/testdir/dumps/Test_visual_block_with_virtualedit.dump b/src/testdir/dumps/Test_visual_block_with_virtualedit.dump
new file mode 100644 (file)
index 0000000..2991a63
--- /dev/null
@@ -0,0 +1,8 @@
+|a+0&#e0e0e08@5> +0&#ffffff0@43
+|b+0&#e0e0e08@3| @2| +0&#ffffff0@42
+|c+0&#e0e0e08@1| @4| +0&#ffffff0@42
+|~+0#4040ff13&| @48
+|~| @48
+|~| @48
+|~| @48
+|-+2#0000000&@1| |V|I|S|U|A|L| |B|L|O|C|K| |-@1| +0&&@3|3|x|7| @6|1|,|7| @10|A|l@1| 
index 789ff6f608fedcbeb7ec09c8421c02e583373ec6..5b2a32cfee0cd15ac629afc457fb177ad5a6e28b 100644 (file)
@@ -2,6 +2,7 @@
 
 source shared.vim
 source check.vim
+source screendump.vim
 
 func Test_block_shift_multibyte()
   " Uses double-wide character.
@@ -1241,5 +1242,25 @@ func Test_visual_put_blockedit_zy_and_zp()
   bw!
 endfunc
 
+func Test_visual_block_with_virtualedit()
+  CheckScreendump
+
+  let lines =<< trim END
+    call setline(1, ['aaaaaa', 'bbbb', 'cc'])
+    set virtualedit=block
+    normal G
+  END
+  call writefile(lines, 'XTest_block')
+
+  let buf = RunVimInTerminal('-S XTest_block', {'rows': 8, 'cols': 50})
+  call term_sendkeys(buf, "\<C-V>gg$")
+  call VerifyScreenDump(buf, 'Test_visual_block_with_virtualedit', {})
+
+  " clean up
+  call term_sendkeys(buf, "\<Esc>")
+  call StopVimInTerminal(buf)
+  call delete('XTest_beval')
+endfunc
+
 
 " vim: shiftwidth=2 sts=2 expandtab
index 242b556ac4642870e9ee959ed30d8485b4ebecf3..0c98a98b32b6a6e252380722b1eb50e83fd2852b 100644 (file)
@@ -755,6 +755,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    3088,
 /**/
     3087,
 /**/