diff src/vim9.h @ 30697:d914a3812d5b v9.0.0683

patch 9.0.0683: cannot specify a time for :echowindow Commit: https://github.com/vim/vim/commit/bdc09a18fca32715687d9911a431da69186528cc Author: Bram Moolenaar <Bram@vim.org> Date: Fri Oct 7 14:31:45 2022 +0100 patch 9.0.0683: cannot specify a time for :echowindow Problem: Cannot specify a time for :echowindow. Solution: A count can be used to specify the display time. Add popup_findecho().
author Bram Moolenaar <Bram@vim.org>
date Fri, 07 Oct 2022 15:45:06 +0200
parents ee039a6049ff
children 307f68a41b03
line wrap: on
line diff
--- a/src/vim9.h
+++ b/src/vim9.h
@@ -457,6 +457,12 @@ typedef struct {
     int		defer_argcount;	    // number of arguments
 } deferins_T;
 
+// arguments to ISN_ECHOWINDOW
+typedef struct {
+    int		ewin_count;	    // number of arguments
+    long	ewin_time;	    // time argument (msec)
+} echowin_T;
+
 /*
  * Instruction
  */
@@ -507,6 +513,7 @@ struct isn_S {
 	getitem_T	    getitem;
 	debug_T		    debug;
 	deferins_T	    defer;
+	echowin_T	    echowin;
     } isn_arg;
 };