1
0
Fork 0
mirror of https://github.com/Reuh/language-candran.git synced 2025-10-27 12:19:30 +00:00

Add goto to the list of control keywords

The goto statement was added in Lua 5.2.0-beta-rc1.

Closes #21.
This commit is contained in:
Robert Machmer 2016-05-17 13:25:29 +02:00
parent f090325f07
commit ba4f1f13c1

View file

@ -133,7 +133,7 @@
]
}
{
'match': '\\b(and|or|not|break|do|else|for|if|elseif|return|then|repeat|while|until|end|function|local|in)\\b'
'match': '\\b(and|or|not|break|do|else|for|if|elseif|return|then|repeat|while|until|end|function|local|in|goto)\\b'
'name': 'keyword.control.lua'
}
{