comparison src/proto/popupwin.pro @ 20384:42ab4d40e78f v8.2.0747

patch 8.2.0747: cannot forcefully close all popups Commit: https://github.com/vim/vim/commit/03a9f848175b182372fb33403998059724a8bf31 Author: Bram Moolenaar <Bram@vim.org> Date: Wed May 13 13:40:16 2020 +0200 patch 8.2.0747: cannot forcefully close all popups Problem: Cannot forcefully close all popups. Solution: Add the "force" argument to popup_clear(). Use it after running a test. Put back the check for a popup when editing a file.
author Bram Moolenaar <Bram@vim.org>
date Wed, 13 May 2020 13:45:04 +0200
parents 361069b687d6
children 3b3589275ab9
comparison
equal deleted inserted replaced
20383:1ebebb9b62e7 20384:42ab4d40e78f
32 void f_popup_hide(typval_T *argvars, typval_T *rettv); 32 void f_popup_hide(typval_T *argvars, typval_T *rettv);
33 void popup_show(win_T *wp); 33 void popup_show(win_T *wp);
34 void f_popup_show(typval_T *argvars, typval_T *rettv); 34 void f_popup_show(typval_T *argvars, typval_T *rettv);
35 void f_popup_settext(typval_T *argvars, typval_T *rettv); 35 void f_popup_settext(typval_T *argvars, typval_T *rettv);
36 int error_if_popup_window(int also_with_term); 36 int error_if_popup_window(int also_with_term);
37 int popup_close(int id); 37 int popup_close(int id, int force);
38 int popup_close_tabpage(tabpage_T *tp, int id); 38 int popup_close_tabpage(tabpage_T *tp, int id, int force);
39 void close_all_popups(void); 39 void close_all_popups(int force);
40 void f_popup_move(typval_T *argvars, typval_T *rettv); 40 void f_popup_move(typval_T *argvars, typval_T *rettv);
41 void f_popup_setoptions(typval_T *argvars, typval_T *rettv); 41 void f_popup_setoptions(typval_T *argvars, typval_T *rettv);
42 void f_popup_getpos(typval_T *argvars, typval_T *rettv); 42 void f_popup_getpos(typval_T *argvars, typval_T *rettv);
43 void f_popup_locate(typval_T *argvars, typval_T *rettv); 43 void f_popup_locate(typval_T *argvars, typval_T *rettv);
44 void f_popup_getoptions(typval_T *argvars, typval_T *rettv); 44 void f_popup_getoptions(typval_T *argvars, typval_T *rettv);