diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-07-12 21:07:54 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-07-12 21:07:54 +0200 |
commit | b4f0628fc5892e1bb9f0f780af782ff47ef277ed (patch) | |
tree | e99eecacf4b8582fa7dde3dafb312f8edce2fd18 /src/proto | |
parent | d94ac0caca12c6ceb54b07fc932edba84a5f60f2 (diff) | |
download | vim-git-b4f0628fc5892e1bb9f0f780af782ff47ef277ed.tar.gz |
patch 8.1.1673: cannot easily find the popup window at a certain positionv8.1.1673
Problem: Cannot easily find the popup window at a certain position.
Solution: Add popup_locate().
Diffstat (limited to 'src/proto')
-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 773336857..d1267e022 100644 --- a/src/proto/popupwin.pro +++ b/src/proto/popupwin.pro @@ -29,6 +29,7 @@ void close_all_popups(void); 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_locate(typval_T *argvars, typval_T *rettv); void f_popup_getoptions(typval_T *argvars, typval_T *rettv); int error_if_popup_window(void); void popup_reset_handled(void); |