summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_ins_complete.vim
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-06-15 15:08:27 +0200
committerChristian Brabandt <cb@256bit.org>2024-06-15 15:08:27 +0200
commita2324373eb1c3f1777bc40cb6dcd5e895a15fe10 (patch)
tree8b33542779f38ea2f85e815fb0ab46e9e20166d3 /src/testdir/test_ins_complete.vim
parentae321b51f7531b23545d64c3a98ed991a31dd5ee (diff)
patch 9.1.0488: Wrong padding for pum "kind" with 'rightleft'v9.1.0488
Problem: Wrong padding for pum "kind" with 'rightleft'. Solution: Fix off-by-one error (zeertzjq). The screen_fill() above is end-exclusive, and - With 'rightleft' it fills `pum_col - pum_base_width - n + 1` to `col`, so the next `col` should be `pum_col - pum_base_width - n`. - With 'norightleft' it fills `col` to `pum_col - pum_base_width + n - 1`, so the next `col` should be `pum_col - pum_base_width + n`. closes: #15004 Signed-off-by: zeertzjq <zeertzjq@outlook.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'src/testdir/test_ins_complete.vim')
0 files changed, 0 insertions, 0 deletions