Skip to content
Snippets Groups Projects
Commit 1ec2263e authored by Arthur Müller's avatar Arthur Müller Committed by GitHub
Browse files

[go mode] Added missing keyword 'rune'

parent 524f54a8
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,8 @@ CodeMirror.defineMode("go", function(config) {
"bool":true, "byte":true, "complex64":true, "complex128":true,
"float32":true, "float64":true, "int8":true, "int16":true, "int32":true,
"int64":true, "string":true, "uint8":true, "uint16":true, "uint32":true,
"uint64":true, "int":true, "uint":true, "uintptr":true, "error": true
"uint64":true, "int":true, "uint":true, "uintptr":true, "error": true,
"rune":true
};
var atoms = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment