Add missing continue keyword from Go definition

This commit is contained in:
Andy Williams 2018-05-15 14:45:55 +01:00
parent cfc66c08a1
commit 767c211e70
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ static Elm_Code_Syntax _elm_code_syntax_go =
"/*",
"*/",
_elm_code_syntax_scope_change_braces,
{ "break", "case", "chan", "const", "default", "defer", "else", "fallthrough", "for", "func", "go", "goto", \
{ "break", "case", "chan", "const", "continue", "default", "defer", "else", "fallthrough", "for", "func", "go", "goto", \
"if", "import", "interface", "map", "package", "range", "return", "select", "struct", "switch", "type", "var", \
"true", "false", "iota", "nil", \
"int", "int8", "int16", "int32", "int64", "uint", "uint8", "uint16", "uint32", "uint64", "uintptr", "float32", \