Skip to content

Commit ca2c91a

Browse files
committed
updated for version 7.4.376
Problem: Popup menu flickers too much. Solution: Remove the forced redraw. (Hirohito Higashi)
1 parent f923cca commit ca2c91a

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/edit.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4593,9 +4593,9 @@ ins_compl_delete()
45934593
i = compl_col + (compl_cont_status & CONT_ADDING ? compl_length : 0);
45944594
backspace_until_column(i);
45954595

4596-
/* Not sure what is still valid, better redraw everything. */
4596+
/* TODO: is this sufficient for redrawing? Redrawing everything causes
4597+
* flicker, thus we can't do that. */
45974598
changed_cline_bef_curs();
4598-
redraw_curbuf_later(NOT_VALID);
45994599
}
46004600

46014601
/* Insert the new text being completed. */

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -734,6 +734,8 @@ static char *(features[]) =
734734

735735
static int included_patches[] =
736736
{ /* Add new patch number below this line */
737+
/**/
738+
376,
737739
/**/
738740
375,
739741
/**/

0 commit comments

Comments
 (0)