summaryrefslogtreecommitdiff
path: root/script/proto/define.lua
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2021-03-15 21:07:14 +0800
committer最萌小汐 <sumneko@hotmail.com>2021-03-15 21:07:14 +0800
commit9bde1d4431a466e894a81b533a3a037b9e574305 (patch)
tree6ce24ce672fbdf97c0a1592f461d5df4e562e259 /script/proto/define.lua
parentb552559036d6a635d51ea27da0b59fa9150ac27f (diff)
downloadlua-language-server-9bde1d4431a466e894a81b533a3a037b9e574305.zip
improve setting
Diffstat (limited to 'script/proto/define.lua')
-rw-r--r--script/proto/define.lua17
1 files changed, 17 insertions, 0 deletions
diff --git a/script/proto/define.lua b/script/proto/define.lua
index 55f477b6..6bc3b891 100644
--- a/script/proto/define.lua
+++ b/script/proto/define.lua
@@ -267,5 +267,22 @@ m.TokenTypes = {
["label"] = 18,
}
+m.BuiltIn = {
+ ['basic'] = 'default',
+ ['bit'] = 'default',
+ ['bit32'] = 'default',
+ ['builtin'] = 'default',
+ ['coroutine'] = 'default',
+ ['debug'] = 'default',
+ ['ffi'] = 'default',
+ ['io'] = 'default',
+ ['jit'] = 'default',
+ ['math'] = 'default',
+ ['os'] = 'default',
+ ['package'] = 'default',
+ ['string'] = 'default',
+ ['table'] = 'default',
+ ['utf8'] = 'default',
+}
return m