diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-09-26 15:17:10 +0200 |
---|---|---|
committer | bfredl <bjorn.linse@gmail.com> | 2022-10-05 20:11:13 +0200 |
commit | 6679687bb3909f853ae97dfa01ae08ea2baf7f97 (patch) | |
tree | eba4f499d8521853bb56cadecf19f0d85cac1d9a /src/nvim/ops.c | |
parent | 1f2ded459a6f26635bf013da4100b3dedb777f73 (diff) | |
download | rneovim-6679687bb3909f853ae97dfa01ae08ea2baf7f97.tar.gz rneovim-6679687bb3909f853ae97dfa01ae08ea2baf7f97.tar.bz2 rneovim-6679687bb3909f853ae97dfa01ae08ea2baf7f97.zip |
refactor(redraw): no type argument in update_screen()
This was used in the past with assumption that curwin/curbuf
is "special" but this has not been true since basically forever
at this point.
Reduce NOT_VALID/CLEAR panic in options.lua . These should not
be set if an effect of the option is causing something
which by itself invokes redraw_later().
Diffstat (limited to 'src/nvim/ops.c')
-rw-r--r-- | src/nvim/ops.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/nvim/ops.c b/src/nvim/ops.c index dee23e9193..7fbf495922 100644 --- a/src/nvim/ops.c +++ b/src/nvim/ops.c @@ -2220,7 +2220,8 @@ void op_insert(oparg_T *oap, long count1) // vis block is still marked. Get rid of it now. curwin->w_cursor.lnum = oap->start.lnum; - update_screen(UPD_INVERTED); + redraw_curbuf_later(UPD_INVERTED); + update_screen(); if (oap->motion_type == kMTBlockWise) { // When 'virtualedit' is used, need to insert the extra spaces before @@ -2772,7 +2773,10 @@ static void op_yank_reg(oparg_T *oap, bool message, yankreg_T *reg, bool append) } // redisplay now, so message is not deleted - update_topline_redraw(); + update_topline(curwin); + if (must_redraw) { + update_screen(); + } if (yank_type == kMTBlockWise) { smsg(NGETTEXT("block of %" PRId64 " line yanked%s", "block of %" PRId64 " lines yanked%s", yanklines), |