elm_code: add support for go syntax.

This commit is contained in:
Al Poole 2017-11-11 13:23:12 +00:00
parent 75daddc839
commit 42484606d0
1 changed files with 18 additions and 0 deletions

View File

@ -80,6 +80,22 @@ static Elm_Code_Syntax _elm_code_syntax_eo =
"implements", "constructors", "get", "set", "keys", "values", "true", "false", "null"}
};
static Elm_Code_Syntax _elm_code_syntax_go =
{
"{}()[]:;%^/*+&|~!=<->,.",
".",
NULL,
"//",
"/*",
"*/",
{ "break", "case", "chan", "const", "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", \
"float64", "complex64", "complex128", "bool", "byte", "rune", "string", "error", "make", "len", "cap", "new", "append", \
"copy", "close", "delete", "complex", "real", "imag", "panic", "recover", NULL }
};
static Elm_Code_Syntax _elm_code_syntax_md =
{
"()[]*+-_=#.>!:\\`~|",
@ -106,6 +122,8 @@ elm_code_syntax_for_mime_get(const char *mime)
return &_elm_code_syntax_eo;
if (!strcmp("text/markdown", mime))
return &_elm_code_syntax_md;
if (!strcmp("text/x-go", mime))
return &_elm_code_syntax_go;
return NULL;
}