aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/nvim/misc1.c5
-rw-r--r--src/nvim/version.c11
2 files changed, 16 insertions, 0 deletions
diff --git a/src/nvim/misc1.c b/src/nvim/misc1.c
index 5760e74cfe..d83c03c9fd 100644
--- a/src/nvim/misc1.c
+++ b/src/nvim/misc1.c
@@ -2188,6 +2188,11 @@ static void changed_common(linenr_T lnum, colnr_T col, linenr_T lnume, long xtra
* changed. Esp. when the buffer was changed in another window. */
if (hasAnyFolding(wp))
set_topline(wp, wp->w_topline);
+
+ // relative numbering may require updating more
+ if (wp->w_p_rnu) {
+ redraw_win_later(wp, SOME_VALID);
+ }
}
}
diff --git a/src/nvim/version.c b/src/nvim/version.c
index bab38a8d32..eac5854ff0 100644
--- a/src/nvim/version.c
+++ b/src/nvim/version.c
@@ -201,6 +201,17 @@ static char *(features[]) = {
static int included_patches[] = {
// Add new patch number below this line
+ 285,
+ //284,
+ //283,
+ //282,
+ //281,
+ //280,
+ //279,
+ //278,
+ //277,
+ //276,
+ //275,
274,
//273,
272,