summaryrefslogtreecommitdiff
path: root/src/register.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-08-22 21:08:44 +0200
committerBram Moolenaar <Bram@vim.org>2020-08-22 21:08:44 +0200
commitcd94277f72e29b740635da84bcd872c96e11bf67 (patch)
tree95deaee0dd9513f3d028a6efb1cb6e32f14faf9d /src/register.c
parent5390099a9733f7952a612670693dd4ebf9e0e178 (diff)
downloadvim-git-cd94277f72e29b740635da84bcd872c96e11bf67.tar.gz
patch 8.2.1511: putting a string in Visual block mode ignores multi-bytev8.2.1511
Problem: Putting a string in Visual block mode ignores multi-byte characters. Solution: Adjust the column for Visual block mode. (closes #6767)
Diffstat (limited to 'src/register.c')
-rw-r--r--src/register.c27
1 files changed, 25 insertions, 2 deletions
diff --git a/src/register.c b/src/register.c
index 47fcd7382..61b6b2c25 100644
--- a/src/register.c
+++ b/src/register.c
@@ -1937,16 +1937,29 @@ do_put(
--lnum;
new_cursor = curwin->w_cursor;
- // simple case: insert into current line
+ // simple case: insert into one line at a time
if (y_type == MCHAR && y_size == 1)
{
- linenr_T end_lnum = 0; // init for gcc
+ linenr_T end_lnum = 0; // init for gcc
+ linenr_T start_lnum = lnum;
if (VIsual_active)
{
end_lnum = curbuf->b_visual.vi_end.lnum;
if (end_lnum < curbuf->b_visual.vi_start.lnum)
end_lnum = curbuf->b_visual.vi_start.lnum;
+ if (end_lnum > start_lnum)
+ {
+ pos_T pos;
+
+ // "col" is valid for the first line, in following lines
+ // the virtual column needs to be used. Matters for
+ // multi-byte characters.
+ pos.lnum = lnum;
+ pos.col = col;
+ pos.coladd = 0;
+ getvcol(curwin, &pos, NULL, &vcol, NULL);
+ }
}
do {
@@ -1954,6 +1967,16 @@ do_put(
if (totlen > 0)
{
oldp = ml_get(lnum);
+ if (lnum > start_lnum)
+ {
+ pos_T pos;
+
+ pos.lnum = lnum;
+ if (getvpos(&pos, vcol) == OK)
+ col = pos.col;
+ else
+ col = MAXCOL;
+ }
if (VIsual_active && col > (int)STRLEN(oldp))
{
lnum++;