mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-10-09 07:09:36 +08:00
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:
parent
3393e27083
commit
fa58e090db
1 changed files with 39 additions and 16 deletions
|
@ -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"
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue