diff options
author | Hinidu <hinidu@gmail.com> | 2014-04-04 20:27:55 +0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-07 20:45:38 -0300 |
commit | e3ba6d97ff3d55c22ee9792b1cfdb9a7924ecf70 (patch) | |
tree | ae27515a4aad8fdea3397242686eb5d8e514b425 /src/getchar.c | |
parent | 9e6f8954cd64bc742ff814a756432768d02bfe8b (diff) | |
download | rneovim-e3ba6d97ff3d55c22ee9792b1cfdb9a7924ecf70.tar.gz rneovim-e3ba6d97ff3d55c22ee9792b1cfdb9a7924ecf70.tar.bz2 rneovim-e3ba6d97ff3d55c22ee9792b1cfdb9a7924ecf70.zip |
vim-patch:7.4.181
Problem: When using 'pastetoggle' the status lines are not updated. (Samuel
Ferencik, Jan Christoph Ebersbach)
Solution: Update the status lines. (Nobuhiro Takasaki)
https://code.google.com/p/vim/source/detail?r=cb5683bcde03796baa7e845fd9a2fcaec3383538
Diffstat (limited to 'src/getchar.c')
-rw-r--r-- | src/getchar.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/getchar.c b/src/getchar.c index 19892b6980..27b19b7940 100644 --- a/src/getchar.c +++ b/src/getchar.c @@ -383,7 +383,7 @@ static int read_readbuf(buffheader_T *buf, int advance) } /* - * Prepare the read buffers for reading (if they contains something). + * Prepare the read buffers for reading (if they contain something). */ static void start_stuff(void) { @@ -1938,6 +1938,10 @@ static int vgetorpeek(int advance) msg_row = Rows - 1; msg_clr_eos(); /* clear ruler */ } +#ifdef FEAT_WINDOWS + status_redraw_all(); + redraw_statuslines(); +#endif showmode(); setcursor(); continue; |