Skip to content

Commit 552c393

Browse files
committed
nvim: add some go types to api_tool.go
Signed-off-by: Koichi Shiraishi <[email protected]>
1 parent 346ffdc commit 552c393

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

nvim/api_tool.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,17 +430,19 @@ func readAPIInfo() (*APIInfo, error) {
430430
var nvimTypes = map[string]string{
431431
"": "void",
432432
"[]byte": "String",
433+
"[]uint": "Array",
433434
"[]interface{}": "Array",
434435
"bool": "Boolean",
435436
"int": "Integer",
436437
"interface{}": "Object",
437438
"Process": "Object",
438439
"string": "String",
439440
"float64": "Float",
441+
"ClientType": "String",
440442

441443
"Channel": "Dictionary",
442444
"*Channel": "Dictionary",
443-
"*ClientVersion": "Dictionary",
445+
"ClientVersion": "Dictionary",
444446
"HLAttrs": "Dictionary",
445447
"*HLAttrs": "Dictionary",
446448
"WindowConfig": "Dictionary",

0 commit comments

Comments
 (0)