mirror of
https://github.com/neovim/neovim.git
synced 2025-09-11 22:08:18 +00:00
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
This commit is contained in:
@@ -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)
|
static void start_stuff(void)
|
||||||
{
|
{
|
||||||
@@ -1938,6 +1938,10 @@ static int vgetorpeek(int advance)
|
|||||||
msg_row = Rows - 1;
|
msg_row = Rows - 1;
|
||||||
msg_clr_eos(); /* clear ruler */
|
msg_clr_eos(); /* clear ruler */
|
||||||
}
|
}
|
||||||
|
#ifdef FEAT_WINDOWS
|
||||||
|
status_redraw_all();
|
||||||
|
redraw_statuslines();
|
||||||
|
#endif
|
||||||
showmode();
|
showmode();
|
||||||
setcursor();
|
setcursor();
|
||||||
continue;
|
continue;
|
||||||
|
@@ -202,6 +202,9 @@ static char *(features[]) = {
|
|||||||
|
|
||||||
static int included_patches[] = {
|
static int included_patches[] = {
|
||||||
// Add new patch number below this line
|
// Add new patch number below this line
|
||||||
|
181,
|
||||||
|
//180,
|
||||||
|
//179,
|
||||||
178,
|
178,
|
||||||
//177,
|
//177,
|
||||||
//176,
|
//176,
|
||||||
|
Reference in New Issue
Block a user