summaryrefslogtreecommitdiffstats
path: root/src/proto/popupwin.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-10-07 14:31:45 +0100
committerBram Moolenaar <Bram@vim.org>2022-10-07 14:31:45 +0100
commitbdc09a18fca32715687d9911a431da69186528cc (patch)
tree9d27853365bffdc04e51cfe7fc6cb75dafc8a0b0 /src/proto/popupwin.pro
parentcf3d0eaf47a56a52b355d8faf4e59685396f9c05 (diff)
patch 9.0.0683: cannot specify a time for :echowindowv9.0.0683
Problem: Cannot specify a time for :echowindow. Solution: A count can be used to specify the display time. Add popup_findecho().
Diffstat (limited to 'src/proto/popupwin.pro')
-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 12be54f1f8..1ff995085a 100644
--- a/src/proto/popupwin.pro
+++ b/src/proto/popupwin.pro
@@ -57,6 +57,7 @@ int set_ref_in_popups(int copyID);
int popup_is_popup(win_T *wp);
win_T *popup_find_preview_window(void);
win_T *popup_find_info_window(void);
+void f_popup_findecho(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);
@@ -67,7 +68,7 @@ win_T *popup_get_message_win(void);
void popup_show_message_win(void);
int popup_message_win_visible(void);
void popup_hide_message_win(void);
-void start_echowindow(void);
+void start_echowindow(int time_sec);
void end_echowindow(void);
int popup_win_closed(win_T *win);
void popup_set_title(win_T *wp);