diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2019-01-03 09:53:39 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2019-01-03 09:53:39 +0800 |
commit | a86ddc73a90586b03d3498d93a08c0533bbe24b8 (patch) | |
tree | e50696277f7eef458a145cf0d3a8fcee1863b4cb /package.json | |
parent | 79244d8d55115540011fd2bc742f02b4da4c39c7 (diff) | |
download | lua-language-server-a86ddc73a90586b03d3498d93a08c0533bbe24b8.zip |
已定义全局变量使用表
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/package.json b/package.json index 39ceecaa..20315f75 100644 --- a/package.json +++ b/package.json @@ -47,8 +47,9 @@ }, "Lua.diagnostics.globals": { "scope": "resource", - "type": "string", - "description": "Defined global variables.Split by `;`.\n已定义的全局变量。使用`;`分割。" + "type": "array", + "items": "string", + "description": "Defined global variables.\n已定义的全局变量。" } } } |