diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-08-21 18:31:03 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-08-21 18:31:03 +0200 |
commit | c7c5f10a36fdeea353e026da28526ff9fb35e367 (patch) | |
tree | d8e177e20e9e334fb1c77eae13d01fe58e67920a /src/proto | |
parent | 258cef59d8c53a5b1c04937c826dc133ad5710e2 (diff) | |
download | vim-git-c7c5f10a36fdeea353e026da28526ff9fb35e367.tar.gz |
patch 8.1.1905: cannot set all properties of the info popupv8.1.1905
Problem: Cannot set all properties of the info popup.
Solution: Add popup_findinfo(). Rename popup_getpreview() to
popup_findpreview().
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/popupwin.pro | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/proto/popupwin.pro b/src/proto/popupwin.pro index 9f6d4339e..050711422 100644 --- a/src/proto/popupwin.pro +++ b/src/proto/popupwin.pro @@ -27,6 +27,7 @@ void f_popup_menu(typval_T *argvars, typval_T *rettv); void f_popup_notification(typval_T *argvars, typval_T *rettv); void f_popup_close(typval_T *argvars, typval_T *rettv); void f_popup_hide(typval_T *argvars, typval_T *rettv); +void popup_show(win_T *wp); void f_popup_show(typval_T *argvars, typval_T *rettv); void f_popup_settext(typval_T *argvars, typval_T *rettv); void popup_close(int id); @@ -49,9 +50,11 @@ int set_ref_in_popups(int copyID); win_T *popup_find_preview_window(void); int popup_is_popup(win_T *wp); win_T *popup_find_info_window(void); -void f_popup_getpreview(typval_T *argvars, typval_T *rettv); +void f_popup_findinfo(typval_T *argvars, typval_T *rettv); +void f_popup_findpreview(typval_T *argvars, typval_T *rettv); int popup_create_preview_window(int info); -void popup_close_preview(int info); +void popup_close_preview(void); +void popup_hide_info(void); void popup_set_title(win_T *wp); void popup_update_preview_title(void); /* vim: set ft=c : */ |