diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/nvim/move.c | 13 | ||||
| -rw-r--r-- | src/nvim/version.c | 6 | 
2 files changed, 12 insertions, 7 deletions
diff --git a/src/nvim/move.c b/src/nvim/move.c index 4d646f5a4b..9693132846 100644 --- a/src/nvim/move.c +++ b/src/nvim/move.c @@ -2164,16 +2164,21 @@ void do_check_cursorbind(void)          int restart_edit_save = restart_edit;          restart_edit = true;          check_cursor(); +        if (curwin->w_p_cul || curwin->w_p_cuc) { +          validate_cursor(); +        }          restart_edit = restart_edit_save;        } -      /* Correct cursor for multi-byte character. */ -      if (has_mbyte) +      // Correct cursor for multi-byte character. +      if (has_mbyte) {          mb_adjust_cursor(); +      }        redraw_later(VALID); -      /* Only scroll when 'scrollbind' hasn't done this. */ -      if (!curwin->w_p_scb) +      // Only scroll when 'scrollbind' hasn't done this. +      if (!curwin->w_p_scb) {          update_topline(); +      }        curwin->w_redr_status = true;      }    } diff --git a/src/nvim/version.c b/src/nvim/version.c index 6e24e30a09..ce1cc03c1f 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -764,14 +764,14 @@ static const int included_patches[] = {    // 191 NA    190,    // 189, -  // 188, +  188,    // 187 NA    // 186,    // 185,    // 184,    // 183, -  // 182, -  // 181, +  182, +  181,    // 180,    179,    178,  | 
