diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2014-05-26 20:44:32 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-05-26 20:44:32 -0400 |
commit | 277554a9ebaaa34bea1862802254db9b9c0f92d1 (patch) | |
tree | 6ab625ee5c8c8b52f582343b60c2465869a45c68 /src | |
parent | 7df7d6bb5baff62942af94f41de142159657569e (diff) | |
parent | c2de243ce1652912a518b052fb1887ae05640d74 (diff) | |
download | rneovim-277554a9ebaaa34bea1862802254db9b9c0f92d1.tar.gz rneovim-277554a9ebaaa34bea1862802254db9b9c0f92d1.tar.bz2 rneovim-277554a9ebaaa34bea1862802254db9b9c0f92d1.zip |
Merge pull request #749 from oni-link/vim-patch-7-4-285
vim-patch:7.4.285
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/misc1.c | 5 | ||||
-rw-r--r-- | src/nvim/version.c | 11 |
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, |