diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-05-30 21:24:26 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-05-30 21:24:26 +0200 |
commit | ac1f1bc222b7de3cb2d3f1f2aa076f11c75e69de (patch) | |
tree | bc71b9f718cce9434723e4e452d13ccd93d6c177 /src/proto/popupwin.pro | |
parent | cc31ad9f9b601d53926b96586bd6b40602d57951 (diff) | |
download | vim-git-ac1f1bc222b7de3cb2d3f1f2aa076f11c75e69de.tar.gz |
patch 8.1.1429: "pos" option of popup window not supported yetv8.1.1429
Problem: "pos" option of popup window not supported yet.
Solution: Implement the option. Rename popup_getposition() to
popup_getpos().
Diffstat (limited to 'src/proto/popupwin.pro')
-rw-r--r-- | src/proto/popupwin.pro | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/proto/popupwin.pro b/src/proto/popupwin.pro index 404b6cfe8..eb9e24152 100644 --- a/src/proto/popupwin.pro +++ b/src/proto/popupwin.pro @@ -1,16 +1,16 @@ /* popupwin.c */ -int popup_any_visible(void); -void close_all_popups(void); -void ex_popupclear(exarg_T *eap); +void popup_adjust_position(win_T *wp); +void f_popup_create(typval_T *argvars, typval_T *rettv); void f_popup_atcursor(typval_T *argvars, typval_T *rettv); +int popup_any_visible(void); void f_popup_close(typval_T *argvars, typval_T *rettv); -void f_popup_create(typval_T *argvars, typval_T *rettv); -void f_popup_getoptions(typval_T *argvars, typval_T *rettv); -void f_popup_getposition(typval_T *argvars, typval_T *rettv); void f_popup_hide(typval_T *argvars, typval_T *rettv); -void f_popup_move(typval_T *argvars, typval_T *rettv); void f_popup_show(typval_T *argvars, typval_T *rettv); -void popup_adjust_position(win_T *wp); void popup_close(int id); void popup_close_tabpage(tabpage_T *tp, int id); +void close_all_popups(void); +void ex_popupclear(exarg_T *eap); +void f_popup_move(typval_T *argvars, typval_T *rettv); +void f_popup_getpos(typval_T *argvars, typval_T *rettv); +void f_popup_getoptions(typval_T *argvars, typval_T *rettv); /* vim: set ft=c : */ |