mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
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().
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user