diff options
Diffstat (limited to 'src/nvim/insexpand.c')
-rw-r--r-- | src/nvim/insexpand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/insexpand.c b/src/nvim/insexpand.c index fe15e21a29..d961d6664a 100644 --- a/src/nvim/insexpand.c +++ b/src/nvim/insexpand.c @@ -3446,7 +3446,7 @@ void ins_compl_delete(void) // TODO(vim): is this sufficient for redrawing? Redrawing everything // causes flicker, thus we can't do that. - changed_cline_bef_curs(); + changed_cline_bef_curs(curwin); // clear v:completed_item set_vim_var_dict(VV_COMPLETED_ITEM, tv_dict_alloc_lock(VAR_FIXED)); } |