]> git.ipfire.org Git - thirdparty/vim.git/commit
patch 9.1.0129: Fix truncation of text_wrap 'wrap' virt text after EOL list char v9.1.0129
authorDylan Thacker-Smith <dylan.ah.smith@gmail.com>
Sat, 24 Feb 2024 09:17:11 +0000 (10:17 +0100)
committerChristian Brabandt <cb@256bit.org>
Sat, 24 Feb 2024 09:17:11 +0000 (10:17 +0100)
commitf548ae7b6357c7934411df243bc987800c9b76d1
tree535f636866aa6e5a21dedc6351badd388758be55
parenta35235e824bb77df0cebdb2bd290e13f1201b292
patch 9.1.0129: Fix truncation of text_wrap 'wrap' virt text after EOL list char

Problem:  Virtual text with text_wrap 'wrap' was effectively being
          truncated by a break conditional on the EOL list character
          being added to the screen line. (BigPeet)
Solution: Remove the condition that was leading to the early break and
          instead fix a similar but incorrectly written outer condition
          that checks if there is more to add at the end of the screen
          line. (Dylan Thacker-Smith)

Also, related:
- update comment in win_line()
- remove no longer necessary at_end_str variable in win_line()

fixes: #12725
closes: #14079

Co-authored-by: zeertzjq <zeertzjq@outlook.com>
Signed-off-by: Dylan Thacker-Smith <dylan.ah.smith@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
src/drawline.c
src/version.c