[lua] "goto" missing in Lua syntax highlighting #942

This commit is contained in:
Martin Aeschlimann 2015-12-03 13:46:56 +01:00
parent e39c3f9be8
commit 08076f3faa
2 changed files with 2 additions and 2 deletions

View file

@ -243,7 +243,7 @@
</dict>
<dict>
<key>match</key>
<string>\b(break|do|else|for|if|elseif|return|then|repeat|while|until|end|function|local|in)\b</string>
<string>\b(break|do|else|for|if|elseif|goto|return|then|repeat|while|until|end|function|local|in)\b</string>
<key>name</key>
<string>keyword.control.lua</string>
</dict>

View file

@ -18,7 +18,7 @@ export var language = <ILanguage> {
keywords: [
'and', 'break', 'do', 'else', 'elseif',
'end', 'false', 'for', 'function', 'if',
'end', 'false', 'for', 'function', 'goto', 'if',
'in', 'local', 'nil', 'not', 'or',
'repeat', 'return', 'then', 'true', 'until',
'while'