mirror of
https://github.com/vim/vim.git
synced 2025-09-26 04:04:07 -04:00
updated for version 7.1-297
This commit is contained in:
@@ -4855,6 +4855,15 @@ gui_update_screen()
|
|||||||
{
|
{
|
||||||
update_topline();
|
update_topline();
|
||||||
validate_cursor();
|
validate_cursor();
|
||||||
|
#ifdef FEAT_AUTOCMD
|
||||||
|
/* Trigger CursorMoved if the cursor moved. */
|
||||||
|
if (!finish_op && has_cursormoved()
|
||||||
|
&& !equalpos(last_cursormoved, curwin->w_cursor))
|
||||||
|
{
|
||||||
|
apply_autocmds(EVENT_CURSORMOVED, NULL, NULL, FALSE, curbuf);
|
||||||
|
last_cursormoved = curwin->w_cursor;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
update_screen(0); /* may need to update the screen */
|
update_screen(0); /* may need to update the screen */
|
||||||
setcursor();
|
setcursor();
|
||||||
out_flush(); /* make sure output has been written */
|
out_flush(); /* make sure output has been written */
|
||||||
|
@@ -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 */
|
||||||
|
/**/
|
||||||
|
297,
|
||||||
/**/
|
/**/
|
||||||
296,
|
296,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user