diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-01-17 21:09:05 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-01-17 21:09:05 +0100 |
commit | ae654385dfb2ae4c1d70789d1dce3676dba4dfbc (patch) | |
tree | 42dcbad57fb99544e9346fa8b075df03865ba1f4 /src/proto/popupmnu.pro | |
parent | c771bf901622064dc27421b04853e16b6914a295 (diff) | |
download | vim-git-ae654385dfb2ae4c1d70789d1dce3676dba4dfbc.tar.gz |
patch 8.1.0768: updating completions may cause the popup menu to flickerv8.1.0768
Problem: Updating completions may cause the popup menu to flicker.
Solution: Avoid updating the text below the popup menu before drawing the
popup menu.
Diffstat (limited to 'src/proto/popupmnu.pro')
-rw-r--r-- | src/proto/popupmnu.pro | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/proto/popupmnu.pro b/src/proto/popupmnu.pro index f553100bb..e2ae92ae8 100644 --- a/src/proto/popupmnu.pro +++ b/src/proto/popupmnu.pro @@ -1,5 +1,7 @@ /* popupmnu.c */ void pum_display(pumitem_T *array, int size, int selected); +void pum_call_update_screen(void); +int pum_under_menu(int row, int col); void pum_redraw(void); void pum_undisplay(void); void pum_clear(void); |