mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
updated for version 7.4.376
Problem: Popup menu flickers too much. Solution: Remove the forced redraw. (Hirohito Higashi)
This commit is contained in:
@@ -4593,9 +4593,9 @@ ins_compl_delete()
|
|||||||
i = compl_col + (compl_cont_status & CONT_ADDING ? compl_length : 0);
|
i = compl_col + (compl_cont_status & CONT_ADDING ? compl_length : 0);
|
||||||
backspace_until_column(i);
|
backspace_until_column(i);
|
||||||
|
|
||||||
/* Not sure what is still valid, better redraw everything. */
|
/* TODO: is this sufficient for redrawing? Redrawing everything causes
|
||||||
|
* flicker, thus we can't do that. */
|
||||||
changed_cline_bef_curs();
|
changed_cline_bef_curs();
|
||||||
redraw_curbuf_later(NOT_VALID);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Insert the new text being completed. */
|
/* Insert the new text being completed. */
|
||||||
|
@@ -734,6 +734,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 */
|
||||||
|
/**/
|
||||||
|
376,
|
||||||
/**/
|
/**/
|
||||||
375,
|
375,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user