diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2019-03-31 13:06:54 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2019-03-31 13:06:54 +0800 |
commit | c79d1ea4c44cc357b1c16459f818748391cb4dc8 (patch) | |
tree | c95192b6cf3f52418bbb7e4f65ee861fbebd69f0 /server/libs/lua53/math.lni | |
parent | 92e4da8c7cec41b0595c59ac91345a812d902975 (diff) | |
download | lua-language-server-c79d1ea4c44cc357b1c16459f818748391cb4dc8.zip |
修改配置中default.parent的写法
Diffstat (limited to 'server/libs/lua53/math.lni')
-rw-r--r-- | server/libs/lua53/math.lni | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/server/libs/lua53/math.lni b/server/libs/lua53/math.lni index 841bbd6a..6458ccf4 100644 --- a/server/libs/lua53/math.lni +++ b/server/libs/lua53/math.lni @@ -8,12 +8,16 @@ name = 'math' <default> type = 'function' -[[.parent]] -type = 'global' -name = 'math' -`````````` -type = 'library' -name = 'math' +parent = { + 1 = { + type = 'global', + name = 'math', + }, + 2 = { + type = 'library', + name = 'math', + } +} [abs] [[.args]] |