mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
updated for version 7.1-221
This commit is contained in:
parent
1f14d57a48
commit
e77c760819
@ -1455,6 +1455,14 @@ ins_redraw(ready)
|
|||||||
# endif
|
# endif
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
|
# ifdef FEAT_SYN_HL
|
||||||
|
/* Need to update the screen first, to make sure syntax
|
||||||
|
* highlighting is correct after making a change (e.g., inserting
|
||||||
|
* a "(". The autocommand may also require a redraw, so it's done
|
||||||
|
* again below, unfortunately. */
|
||||||
|
if (syntax_present(curbuf) && must_redraw)
|
||||||
|
update_screen(0);
|
||||||
|
# endif
|
||||||
apply_autocmds(EVENT_CURSORMOVEDI, NULL, NULL, FALSE, curbuf);
|
apply_autocmds(EVENT_CURSORMOVEDI, NULL, NULL, FALSE, curbuf);
|
||||||
last_cursormoved = curwin->w_cursor;
|
last_cursormoved = curwin->w_cursor;
|
||||||
}
|
}
|
||||||
|
@ -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 */
|
||||||
|
/**/
|
||||||
|
221,
|
||||||
/**/
|
/**/
|
||||||
220,
|
220,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user