impr(code go): add more keywords to Golang (@rammba) (#5918)

I've added some keywords to Golang mostly based on the following
article: https://go.dev/tour/basics/11
This commit is contained in:
Radoš Milićev 2024-09-26 10:54:01 +02:00 committed by GitHub
parent 3393e27083
commit fa58e090db
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2,30 +2,53 @@
"name": "code_go",
"noLazyMode": true,
"words": [
"bool",
"break",
"default",
"func",
"interface",
"select",
"byte",
"case",
"defer",
"go",
"map",
"struct",
"chan",
"else",
"goto",
"package",
"switch",
"complex64",
"complex128",
"const",
"fallthrough",
"if",
"range",
"type",
"continue",
"default",
"defer",
"else",
"error",
"fallthrough",
"false",
"float32",
"float64",
"for",
"func",
"go",
"goto",
"if",
"import",
"int8",
"int16",
"int32",
"int64",
"int",
"interface",
"map",
"nil",
"package",
"range",
"return",
"rune",
"select",
"string",
"struct",
"switch",
"true",
"type",
"uint8",
"uint16",
"uint32",
"uint64",
"uint",
"uintptr",
"var"
]
}