diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-05-26 22:17:52 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-05-26 22:17:52 +0200 |
commit | 2cd0dce898995a2b05f7285a70efec3f67f579f5 (patch) | |
tree | d0f53338a226bedd3730e5a143bc226aff64cdb4 /src/proto | |
parent | 68e6560b84f196c82e27a72669684d5506a3a837 (diff) | |
download | vim-git-2cd0dce898995a2b05f7285a70efec3f67f579f5.tar.gz |
patch 8.1.1406: popup_hide() and popup_show() not implemented yetv8.1.1406
Problem: popup_hide() and popup_show() not implemented yet.
Solution: Implement the functions.
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/popupwin.pro | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/proto/popupwin.pro b/src/proto/popupwin.pro index 172c0794d..64fca5ff5 100644 --- a/src/proto/popupwin.pro +++ b/src/proto/popupwin.pro @@ -1,6 +1,9 @@ /* popupwin.c */ void f_popup_create(typval_T *argvars, typval_T *rettv); +int popup_any_visible(void); void f_popup_close(typval_T *argvars, typval_T *rettv); +void f_popup_hide(typval_T *argvars, typval_T *rettv); +void f_popup_show(typval_T *argvars, typval_T *rettv); void popup_close(int id); void popup_close_tabpage(tabpage_T *tp, int id); void close_all_popups(void); |