comparison src/proto/popupwin.pro @ 18613:fa995154904e v8.1.2300

patch 8.1.2300: redraw breaks going through list of popup windows Commit: https://github.com/vim/vim/commit/afe45b68a67769a61b44a96b0ffe3bfce4e9316e Author: Bram Moolenaar <Bram@vim.org> Date: Wed Nov 13 22:35:19 2019 +0100 patch 8.1.2300: redraw breaks going through list of popup windows Problem: Redraw breaks going through list of popup windows. Solution: Use different flags for popup_reset_handled(). (closes https://github.com/vim/vim/issues/5216)
author Bram Moolenaar <Bram@vim.org>
date Wed, 13 Nov 2019 22:45:03 +0100
parents e5ef5d820b5b
children 0c005ff84a45
comparison
equal deleted inserted replaced
18612:29a5273d0270 18613:fa995154904e
38 void f_popup_setoptions(typval_T *argvars, typval_T *rettv); 38 void f_popup_setoptions(typval_T *argvars, typval_T *rettv);
39 void f_popup_getpos(typval_T *argvars, typval_T *rettv); 39 void f_popup_getpos(typval_T *argvars, typval_T *rettv);
40 void f_popup_locate(typval_T *argvars, typval_T *rettv); 40 void f_popup_locate(typval_T *argvars, typval_T *rettv);
41 void f_popup_getoptions(typval_T *argvars, typval_T *rettv); 41 void f_popup_getoptions(typval_T *argvars, typval_T *rettv);
42 int error_if_popup_window(void); 42 int error_if_popup_window(void);
43 void popup_reset_handled(void); 43 void popup_reset_handled(int handled_flag);
44 win_T *find_next_popup(int lowest); 44 win_T *find_next_popup(int lowest, int handled_flag);
45 int popup_do_filter(int c); 45 int popup_do_filter(int c);
46 int popup_no_mapping(void); 46 int popup_no_mapping(void);
47 void popup_check_cursor_pos(void); 47 void popup_check_cursor_pos(void);
48 void may_update_popup_mask(int type); 48 void may_update_popup_mask(int type);
49 void update_popups(void (*win_update)(win_T *wp)); 49 void update_popups(void (*win_update)(win_T *wp));