File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -372,6 +372,7 @@ var nvimTypes = map[string]string{
372
372
"[]*UI" : "Array" ,
373
373
"[]ExtMarks" : "Array" ,
374
374
"[]VirtualTextChunk" : "Array" ,
375
+ "[]EchoChunk" : "Array" ,
375
376
376
377
"[2]int" : "ArrayOf(Integer, 2)" ,
377
378
"[]*Mapping" : "ArrayOf(Dictionary)" ,
Original file line number Diff line number Diff line change @@ -356,6 +356,15 @@ type VirtualTextChunk struct {
356
356
HLGroup string
357
357
}
358
358
359
+ // EchoChunk represents a echo chunk.
360
+ type EchoChunk struct {
361
+ // Text is echo text.
362
+ Text string `msgpack:",array"`
363
+
364
+ // HLGroup is echo highlight group.
365
+ HLGroup string
366
+ }
367
+
359
368
// WindowConfig represents a configs of OpenWindow.
360
369
//
361
370
// Relative is the specifies the type of positioning method used for the floating window.
You can’t perform that action at this time.
0 commit comments