forked from aniani/vim
updated for version 7.0-150
This commit is contained in:
parent
2647063968
commit
09ef47a32a
33
src/term.c
33
src/term.c
@ -3137,25 +3137,32 @@ set_shellsize(width, height, mustset)
|
|||||||
screenalloc(FALSE);
|
screenalloc(FALSE);
|
||||||
repeat_message();
|
repeat_message();
|
||||||
}
|
}
|
||||||
else if (State & CMDLINE)
|
|
||||||
{
|
|
||||||
update_screen(NOT_VALID);
|
|
||||||
redrawcmdline();
|
|
||||||
}
|
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
update_topline();
|
#ifdef FEAT_SCROLLBIND
|
||||||
#if defined(FEAT_INS_EXPAND)
|
if (curwin->w_p_scb)
|
||||||
if (pum_visible())
|
do_check_scrollbind(TRUE);
|
||||||
|
#endif
|
||||||
|
if (State & CMDLINE)
|
||||||
{
|
{
|
||||||
redraw_later(NOT_VALID);
|
update_screen(NOT_VALID);
|
||||||
ins_compl_show_pum(); /* This includes the redraw. */
|
redrawcmdline();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
{
|
||||||
|
update_topline();
|
||||||
|
#if defined(FEAT_INS_EXPAND)
|
||||||
|
if (pum_visible())
|
||||||
|
{
|
||||||
|
redraw_later(NOT_VALID);
|
||||||
|
ins_compl_show_pum(); /* This includes the redraw. */
|
||||||
|
}
|
||||||
|
else
|
||||||
#endif
|
#endif
|
||||||
update_screen(NOT_VALID);
|
update_screen(NOT_VALID);
|
||||||
if (redrawing())
|
if (redrawing())
|
||||||
setcursor();
|
setcursor();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
cursor_on(); /* redrawing may have switched it off */
|
cursor_on(); /* redrawing may have switched it off */
|
||||||
}
|
}
|
||||||
|
@ -666,6 +666,8 @@ 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 */
|
||||||
|
/**/
|
||||||
|
150,
|
||||||
/**/
|
/**/
|
||||||
149,
|
149,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user