diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-07-23 13:50:46 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-07-23 13:50:46 +0200 |
commit | 674fffe855dd7145e1216246d76b13464b7057f7 (patch) | |
tree | 81722716eedcbb4f895e5344f067b7a13e6b58c3 /src/edit.c | |
parent | a1fae80371a46aa5f74ea041d92255616d2721b7 (diff) | |
download | vim-git-674fffe855dd7145e1216246d76b13464b7057f7.tar.gz |
updated for version 7.4.376v7.4.376
Problem: Popup menu flickers too much.
Solution: Remove the forced redraw. (Hirohito Higashi)
Diffstat (limited to 'src/edit.c')
-rw-r--r-- | src/edit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/edit.c b/src/edit.c index f0d630a05..69679bcdd 100644 --- a/src/edit.c +++ b/src/edit.c @@ -4593,9 +4593,9 @@ ins_compl_delete() i = compl_col + (compl_cont_status & CONT_ADDING ? compl_length : 0); 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(); - redraw_curbuf_later(NOT_VALID); } /* Insert the new text being completed. */ |