diff options
Diffstat (limited to 'src/nvim/edit.c')
-rw-r--r-- | src/nvim/edit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/edit.c b/src/nvim/edit.c index 6a6f44f0c7..88ed1e6cb4 100644 --- a/src/nvim/edit.c +++ b/src/nvim/edit.c @@ -1708,7 +1708,7 @@ void change_indent(int type, int amount, int round, int replaced, int call_chang curwin->w_cursor.col = (colnr_T)new_cursor_col; } curwin->w_set_curswant = true; - changed_cline_bef_curs(); + changed_cline_bef_curs(curwin); // May have to adjust the start of the insert. if (State & MODE_INSERT) { |