comparison src/proto/popupwin.pro @ 17107:0001d10a7661 v8.1.1553

patch 8.1.1553: not easy to change the text in a popup window commit https://github.com/vim/vim/commit/dc2ce58b5ac72e2af765385eb426660104816344 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jun 16 15:32:14 2019 +0200 patch 8.1.1553: not easy to change the text in a popup window Problem: Not easy to change the text in a popup window. Solution: Add popup_settext(). (Ben Jackson, closes https://github.com/vim/vim/issues/4549) Also display a space for an empty popup.
author Bram Moolenaar <Bram@vim.org>
date Sun, 16 Jun 2019 15:45:05 +0200
parents 94007c802045
children af861fccc309
comparison
equal deleted inserted replaced
17106:32af152d94b1 17107:0001d10a7661
12 void f_popup_dialog(typval_T *argvars, typval_T *rettv); 12 void f_popup_dialog(typval_T *argvars, typval_T *rettv);
13 void f_popup_notification(typval_T *argvars, typval_T *rettv); 13 void f_popup_notification(typval_T *argvars, typval_T *rettv);
14 void f_popup_close(typval_T *argvars, typval_T *rettv); 14 void f_popup_close(typval_T *argvars, typval_T *rettv);
15 void f_popup_hide(typval_T *argvars, typval_T *rettv); 15 void f_popup_hide(typval_T *argvars, typval_T *rettv);
16 void f_popup_show(typval_T *argvars, typval_T *rettv); 16 void f_popup_show(typval_T *argvars, typval_T *rettv);
17 void f_popup_settext(typval_T *argvars, typval_T *rettv);
17 void popup_close(int id); 18 void popup_close(int id);
18 void popup_close_tabpage(tabpage_T *tp, int id); 19 void popup_close_tabpage(tabpage_T *tp, int id);
19 void close_all_popups(void); 20 void close_all_popups(void);
20 void f_popup_move(typval_T *argvars, typval_T *rettv); 21 void f_popup_move(typval_T *argvars, typval_T *rettv);
21 void f_popup_getpos(typval_T *argvars, typval_T *rettv); 22 void f_popup_getpos(typval_T *argvars, typval_T *rettv);