mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 20:26:08 +00:00
[lua] "goto" missing in Lua syntax highlighting #942
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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'
|
||||
|
||||
Reference in New Issue
Block a user