mirror of
https://github.com/neovim/neovim.git
synced 2025-09-13 06:48:17 +00:00
vim-patch:7.4.473
vim-patch: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) https://code.google.com/p/vim/source/detail?r=v7-4-473
This commit is contained in:
@@ -1058,6 +1058,8 @@ int win_lbr_chartabsize(win_T *wp, char_u *line, char_u *s, colnr_T col, int *he
|
|||||||
if (col >= (colnr_T)wp->w_width) {
|
if (col >= (colnr_T)wp->w_width) {
|
||||||
col -= wp->w_width;
|
col -= wp->w_width;
|
||||||
numberextra = wp->w_width - (numberextra - win_col_off2(wp));
|
numberextra = wp->w_width - (numberextra - win_col_off2(wp));
|
||||||
|
if (*p_sbr != NUL && col >= (colnr_T)STRLEN(p_sbr))
|
||||||
|
col -= (colnr_T)STRLEN(p_sbr);
|
||||||
if (numberextra > 0) {
|
if (numberextra > 0) {
|
||||||
col = col % numberextra;
|
col = col % numberextra;
|
||||||
}
|
}
|
||||||
|
@@ -193,7 +193,7 @@ static int included_patches[] = {
|
|||||||
//476,
|
//476,
|
||||||
//475,
|
//475,
|
||||||
//474,
|
//474,
|
||||||
//473,
|
473,
|
||||||
472,
|
472,
|
||||||
//471,
|
//471,
|
||||||
//470,
|
//470,
|
||||||
|
Reference in New Issue
Block a user