diff options
author | oni-link <knil.ino@gmail.com> | 2014-05-22 12:08:47 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-06-05 18:40:02 -0400 |
commit | 8638578bf3513dac4bdc1a07a2bc8ee3846d716e (patch) | |
tree | e77f2586811974859b8bd9dfb89466d18fbbb819 | |
parent | 82d11c07725efaa3d158813e5f2ef0c49ee6b40d (diff) | |
download | rneovim-8638578bf3513dac4bdc1a07a2bc8ee3846d716e.tar.gz rneovim-8638578bf3513dac4bdc1a07a2bc8ee3846d716e.tar.bz2 rneovim-8638578bf3513dac4bdc1a07a2bc8ee3846d716e.zip |
vim-patch:7.4.288 #751
Problem: When 'spellfile' is set the screen is not redrawn.
Solution: Redraw when updating the spelling info. (Christian Brabandt)
https://code.google.com/p/vim/source/detail?r=7965cb6a435ae1ea331c7c2f8740d3d4c3625f3b
-rw-r--r-- | src/nvim/spell.c | 1 | ||||
-rw-r--r-- | src/nvim/version.c | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/spell.c b/src/nvim/spell.c index a3e104b160..924414c7da 100644 --- a/src/nvim/spell.c +++ b/src/nvim/spell.c @@ -3967,6 +3967,7 @@ char_u *did_set_spelllang(win_T *wp) theend: free(spl_copy); recursive = FALSE; + redraw_win_later(wp, NOT_VALID); return ret_msg; } diff --git a/src/nvim/version.c b/src/nvim/version.c index ffe79a1528..49fe3ea909 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -202,6 +202,8 @@ static char *(features[]) = { static int included_patches[] = { // Add new patch number below this line + 288, + //287, 286, 285, 284, |