]> git.ipfire.org Git - thirdparty/vim.git/commit
patch 9.1.0056: wrong number of trailing spaces inserted after blockwise put v9.1.0056
authorVanaIgr <vanaigranov@gmail.com>
Thu, 25 Jan 2024 20:50:41 +0000 (21:50 +0100)
committerChristian Brabandt <cb@256bit.org>
Thu, 25 Jan 2024 20:58:33 +0000 (21:58 +0100)
commit6638ec8afa9875ff565020536954c424d5f6f27d
tree6b53f96435d5f448acc9c0679112d8a6b6b8fc10
parent78019df645400796831670ec166e7e3b55ae8310
patch 9.1.0056: wrong number of trailing spaces inserted after blockwise put

Problem:  Incorrect number of trailing spaces inserted for multibyte
  characters when pasting a blockwise register in blockwise visual
          mode (VanaIgr)
Solution: Skip over trailing UTF-8 bytes when computing the number of trailing
          spaces (VanaIgr)

When pasting in blockwise visual mode, and the register type is <CTRL-V>, Vim
aligns the text after the replaced area by inserting spaces after pasted
lines that are shorter than the longest line. When a shorter line contains
multibyte characters, each trailing UTF-8 byte's width is counted in addition
to the width of the character itself. Each trailing byte counts as being 4
cells wide (since it would be displayed as <xx>).

closes: #13909

Signed-off-by: VanaIgr <vanaigranov@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
src/register.c
src/testdir/test_put.vim
src/version.c