From e5ead831a2a638f145d5a7ae88f72d8526cbbde1 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Fri, 10 Oct 2014 15:34:33 +0200 Subject: updated for version 7.4.473 Problem: Cursor movement is incorrect when there is a number column/sign/fold column and 'sbr' is displayed. Solution: Adjust the column for 'sbr'. (Christian Brabandt) --- src/charset.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/charset.c') diff --git a/src/charset.c b/src/charset.c index fcc41ec334..006caa2a50 100644 --- a/src/charset.c +++ b/src/charset.c @@ -1184,6 +1184,8 @@ win_lbr_chartabsize(wp, line, s, col, headp) { col -= W_WIDTH(wp); numberextra = W_WIDTH(wp) - (numberextra - win_col_off2(wp)); + if (*p_sbr != NUL && col >= (colnr_T)STRLEN(p_sbr)) + col -= (colnr_T)STRLEN(p_sbr); if (numberextra > 0) col = col % numberextra; } -- cgit v1.2.3