1
0
Fork 0
mirror of https://github.com/Reuh/language-candran.git synced 2025-10-27 20:29:31 +00:00

Merge pull request #31 from rm-code/master

Add syntax highlighting for constants
This commit is contained in:
Jorge Garrido 2017-01-31 09:42:43 +01:00 committed by GitHub
commit 732703daec

View file

@ -137,7 +137,7 @@
'name': 'keyword.control.lua'
}
{
'match': '(?<![^.]\\.|:)\\b(false|nil|true|_G|_VERSION|math\\.(pi|huge))\\b|(?<![.])\\.{3}(?!\\.)'
'match': '(?<![^.]\\.|:)\\b([A-Z_]+|false|nil|true|math\\.(pi|huge))\\b|(?<![.])\\.{3}(?!\\.)'
'name': 'constant.language.lua'
}
{