Mercurial > vim
changeset 15310:34a04c9a3575 v8.1.0663
patch 8.1.0663: text property display wrong when 'number' is set
commit https://github.com/vim/vim/commit/8caa10a8ec6e398fd67c30b8a2bf20638d3c6c0a
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Dec 30 22:07:40 2018 +0100
patch 8.1.0663: text property display wrong when 'number' is set
Problem: Text property display wrong when 'number' is set. (Dominique
Pelle)
Solution: Compare with "vcol" instead of "col".
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 30 Dec 2018 22:15:06 +0100 |
parents | b048e245e48f |
children | a3af4b055511 |
files | src/screen.c src/version.c |
diffstat | 2 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/screen.c +++ b/src/screen.c @@ -4304,7 +4304,7 @@ win_line( { int tpi = text_prop_idxs[pi]; - if (col >= text_props[tpi].tp_col - 1 + if (vcol >= text_props[tpi].tp_col - 1 + text_props[tpi].tp_len) { if (pi + 1 < text_props_active) @@ -4319,7 +4319,7 @@ win_line( // Add any text property that starts in this column. while (text_prop_next < text_prop_count - && col >= text_props[text_prop_next].tp_col - 1) + && vcol >= text_props[text_prop_next].tp_col - 1) text_prop_idxs[text_props_active++] = text_prop_next++; text_prop_type = NULL;