diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-05-13 16:34:15 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-05-13 16:34:15 +0200 |
commit | ef6b979bfae82f64781d8b0ce0194c57111243d4 (patch) | |
tree | b7f9acb63a9f7ca7fa4881d511ccb7b58ba24053 /src/proto/popupwin.pro | |
parent | 03a9f848175b182372fb33403998059724a8bf31 (diff) | |
download | vim-git-ef6b979bfae82f64781d8b0ce0194c57111243d4.tar.gz |
patch 8.2.0748: cannot get a list of all popupsv8.2.0748
Problem: Cannot get a list of all popups.
Solution: Add popup_list(). Use it in the test runner.
Diffstat (limited to 'src/proto/popupwin.pro')
-rw-r--r-- | src/proto/popupwin.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/popupwin.pro b/src/proto/popupwin.pro index 4fa3013f4..02cdce33a 100644 --- a/src/proto/popupwin.pro +++ b/src/proto/popupwin.pro @@ -40,6 +40,7 @@ void close_all_popups(int force); void f_popup_move(typval_T *argvars, typval_T *rettv); void f_popup_setoptions(typval_T *argvars, typval_T *rettv); void f_popup_getpos(typval_T *argvars, typval_T *rettv); +void f_popup_list(typval_T *argvars, typval_T *rettv); void f_popup_locate(typval_T *argvars, typval_T *rettv); void f_popup_getoptions(typval_T *argvars, typval_T *rettv); int error_if_term_popup_window(void); |