summaryrefslogtreecommitdiff
path: root/src/proto
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-05-26 14:11:23 +0200
committerBram Moolenaar <Bram@vim.org>2019-05-26 14:11:23 +0200
commitec58384afa0dc1678afd7b8d19b4645ac2f73f42 (patch)
tree542962e10b9053a34c1a966e7583709e9d40b960 /src/proto
parenta8c99fb78e9d747c127e8878518d5a43837b022b (diff)
downloadvim-git-ec58384afa0dc1678afd7b8d19b4645ac2f73f42.tar.gz
patch 8.1.1399: popup windows not adjusted when switching tabsv8.1.1399
Problem: Popup windows not adjusted when switching tabs. Solution: Save and restore first_tab_popupwin. Fix closing a tabpage.
Diffstat (limited to 'src/proto')
-rw-r--r--src/proto/popupwin.pro3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/proto/popupwin.pro b/src/proto/popupwin.pro
index a3d78b8c6..172c0794d 100644
--- a/src/proto/popupwin.pro
+++ b/src/proto/popupwin.pro
@@ -1,7 +1,8 @@
/* popupwin.c */
void f_popup_create(typval_T *argvars, typval_T *rettv);
void f_popup_close(typval_T *argvars, typval_T *rettv);
-void popup_close(int nr);
+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);
/* vim: set ft=c : */