comparison src/proto/popupwin.pro @ 16829:5cebaecad422 v8.1.1416

patch 8.1.1416: popup_getposition() not implemented yet commit https://github.com/vim/vim/commit/bc133543b8b0ebb1d8624e37d840b739eb00f3f3 Author: Bram Moolenaar <Bram@vim.org> Date: Wed May 29 20:26:46 2019 +0200 patch 8.1.1416: popup_getposition() not implemented yet Problem: Popup_getposition() not implemented yet. Solution: Implement it. (Yasuhiro Matsumoto, closes https://github.com/vim/vim/issues/4449)
author Bram Moolenaar <Bram@vim.org>
date Wed, 29 May 2019 20:30:05 +0200
parents 069ee8dc8c8d
children 032d5335987e
comparison
equal deleted inserted replaced
16828:1a8e924e66ba 16829:5cebaecad422
1 /* popupwin.c */ 1 /* popupwin.c */
2 void f_popup_create(typval_T *argvars, typval_T *rettv); 2 void f_popup_create(typval_T *argvars, typval_T *rettv);
3 int popup_any_visible(void); 3 int popup_any_visible(void);
4 void f_popup_close(typval_T *argvars, typval_T *rettv); 4 void f_popup_close(typval_T *argvars, typval_T *rettv);
5 void f_popup_hide(typval_T *argvars, typval_T *rettv); 5 void f_popup_hide(typval_T *argvars, typval_T *rettv);
6 void f_popup_getposition(typval_T *argvars, typval_T *rettv);
6 void f_popup_show(typval_T *argvars, typval_T *rettv); 7 void f_popup_show(typval_T *argvars, typval_T *rettv);
7 void popup_close(int id); 8 void popup_close(int id);
8 void popup_close_tabpage(tabpage_T *tp, int id); 9 void popup_close_tabpage(tabpage_T *tp, int id);
9 void close_all_popups(void); 10 void close_all_popups(void);
10 void ex_popupclear(exarg_T *eap); 11 void ex_popupclear(exarg_T *eap);