commit | 7ec83432b7752a1c1956e967afa40611d40c179b | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Tue Jun 17 18:16:11 2014 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Tue Jun 17 18:16:11 2014 +0200 |
tree | f4ed9b72fb2bab7b8ee590e6f31b9838533711e0 | |
parent | b3414595c713ca161f082776f89417faddec7d2d [diff] [blame] |
updated for version 7.4.331 Problem: Relative numbering not updated after a linewise yank. Issue 235. Solution: Redraw after the yank. (Christian Brabandt)
diff --git a/src/ops.c b/src/ops.c index 0348353..f5bf0f8 100644 --- a/src/ops.c +++ b/src/ops.c
@@ -3150,6 +3150,8 @@ vim_free(y_current->y_array); y_current = curr; } + if (curwin->w_p_rnu) + redraw_later(SOME_VALID); /* cursor moved to start */ if (mess) /* Display message about yank? */ { if (yanktype == MCHAR