#477 api keywords moved to TIC module

This commit is contained in:
BADIM-PC\Vadim
2017-12-21 10:40:56 +03:00
parent 1280a1291a
commit 67d5ad4860
6 changed files with 23 additions and 11 deletions

View File

@@ -1329,8 +1329,12 @@ static const tic_script_config LuaSyntaxConfig =
.singleComment = "--",
.blockStringStart = "[[",
.blockStringEnd = "]]",
.keywords = LuaKeywords,
.keywordsCount = COUNT_OF(LuaKeywords),
.api = ApiKeywords,
.apiCount = COUNT_OF(ApiKeywords),
};
const tic_script_config* getLuaScriptConfig()
@@ -1364,8 +1368,12 @@ static const tic_script_config MoonSyntaxConfig =
.blockStringStart = NULL,
.blockStringEnd = NULL,
.singleComment = "--",
.keywords = MoonKeywords,
.keywordsCount = COUNT_OF(MoonKeywords),
.api = ApiKeywords,
.apiCount = COUNT_OF(ApiKeywords),
};
const tic_script_config* getMoonScriptConfig()