vim-patch:7.4.376

Problem:    Popup menu flickers too much.
Solution:   Remove the forced redraw. (Hirohito Higashi)

https://code.google.com/p/vim/source/detail?r=v7-4-376

Includes: vim-patch:7.4.357 vim-patch:7.4.367 vim-patch:7.4.376
This commit is contained in:
André Twupack
2014-09-11 21:09:09 +02:00
parent 6a8932aa58
commit ae33dc0d5a
2 changed files with 5 additions and 3 deletions

View File

@@ -3798,6 +3798,8 @@ static void ins_compl_delete(void)
*/
i = compl_col + (compl_cont_status & CONT_ADDING ? compl_length : 0);
backspace_until_column(i);
// TODO: is this sufficient for redrawing? Redrawing everything causes
// flicker, thus we can't do that.
changed_cline_bef_curs();
}