comparison src/proto/popupwin.pro @ 16855:19162ff4eacd v8.1.1429

patch 8.1.1429: "pos" option of popup window not supported yet commit https://github.com/vim/vim/commit/ac1f1bc222b7de3cb2d3f1f2aa076f11c75e69de Author: Bram Moolenaar <Bram@vim.org> Date: Thu May 30 21:24:26 2019 +0200 patch 8.1.1429: "pos" option of popup window not supported yet Problem: "pos" option of popup window not supported yet. Solution: Implement the option. Rename popup_getposition() to popup_getpos().
author Bram Moolenaar <Bram@vim.org>
date Thu, 30 May 2019 21:30:04 +0200
parents e6bcccccbf7b
children da5f5836e90c
comparison
equal deleted inserted replaced
16854:a84036f2d3ec 16855:19162ff4eacd
1 /* popupwin.c */ 1 /* popupwin.c */
2 void popup_adjust_position(win_T *wp);
3 void f_popup_create(typval_T *argvars, typval_T *rettv);
4 void f_popup_atcursor(typval_T *argvars, typval_T *rettv);
2 int popup_any_visible(void); 5 int popup_any_visible(void);
6 void f_popup_close(typval_T *argvars, typval_T *rettv);
7 void f_popup_hide(typval_T *argvars, typval_T *rettv);
8 void f_popup_show(typval_T *argvars, typval_T *rettv);
9 void popup_close(int id);
10 void popup_close_tabpage(tabpage_T *tp, int id);
3 void close_all_popups(void); 11 void close_all_popups(void);
4 void ex_popupclear(exarg_T *eap); 12 void ex_popupclear(exarg_T *eap);
5 void f_popup_atcursor(typval_T *argvars, typval_T *rettv); 13 void f_popup_move(typval_T *argvars, typval_T *rettv);
6 void f_popup_close(typval_T *argvars, typval_T *rettv); 14 void f_popup_getpos(typval_T *argvars, typval_T *rettv);
7 void f_popup_create(typval_T *argvars, typval_T *rettv);
8 void f_popup_getoptions(typval_T *argvars, typval_T *rettv); 15 void f_popup_getoptions(typval_T *argvars, typval_T *rettv);
9 void f_popup_getposition(typval_T *argvars, typval_T *rettv);
10 void f_popup_hide(typval_T *argvars, typval_T *rettv);
11 void f_popup_move(typval_T *argvars, typval_T *rettv);
12 void f_popup_show(typval_T *argvars, typval_T *rettv);
13 void popup_adjust_position(win_T *wp);
14 void popup_close(int id);
15 void popup_close_tabpage(tabpage_T *tp, int id);
16 /* vim: set ft=c : */ 16 /* vim: set ft=c : */