summaryrefslogtreecommitdiff
path: root/package.nls.json
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2019-08-27 21:22:56 +0800
committer最萌小汐 <sumneko@hotmail.com>2019-08-27 21:22:56 +0800
commit7d041b4d7507190141eaac05501d479b77aa8771 (patch)
treed02c4a5a98d4d1b746ccb1d2f7a51a307b99cea8 /package.nls.json
parent90fb20579113cd580faf030332c2007b40a6fe2e (diff)
downloadlua-language-server-7d041b4d7507190141eaac05501d479b77aa8771.zip
可以禁用函数调用片段
Diffstat (limited to 'package.nls.json')
-rw-r--r--package.nls.json3
1 files changed, 2 insertions, 1 deletions
diff --git a/package.nls.json b/package.nls.json
index 4403a790..cc782acd 100644
--- a/package.nls.json
+++ b/package.nls.json
@@ -1,4 +1,5 @@
{
+ "config.completion.callSnippet": "Show function call snippets.",
"config.diagnostics.disable": "Disabled diagnostic (Use code in hover brackets).\n```json\n\"Lua.diagnostics.disable\" : [\n \"unused-local\",\n \"lowercase-global\"\n]\n```\n",
"config.diagnostics.enable": "Enable diagnostics.",
"config.diagnostics.globals": "Defined global variables.\n```json\n\"Lua.diagnostics.globals\" : [\n \"GLOBAL1\",\n \"GLOBAL2\"\n]\n```\n",
@@ -7,7 +8,7 @@
"config.runtime.version": "Lua runtime version.",
"config.workspace.ignoreDir": "Ignored directories (Use `.gitignore` grammar).\n```json\n\"Lua.workspace.ignoreDir\" : [\n \"temp/*.*\",\n \"!temp/*.lua\"\n]\n```\n",
"config.workspace.ignoreSubmodules": "Ignore submodules.",
- "config.workspace.library": "(Plz help me to translate these into nice English!)\nLoad external library.\nThis feature can load external Lua files, which can be used for definition, automatic completion and other functions. Note that the language server does not monitor changes in external files and needs to restart if the external files are modified.\nThe following example shows loaded files in `C:/lua` and `../lib` ,exclude `../lib/temp`.\n```json\n\"Lua.workspace.library\": {\n \"C:/lua\": true,\n \"../lib\": [\n \"temp/*\"\n ]\n}\n```\n",
+ "config.workspace.library": "Load external library.\nThis feature can load external Lua files, which can be used for definition, automatic completion and other functions. Note that the language server does not monitor changes in external files and needs to restart if the external files are modified.\nThe following example shows loaded files in `C:/lua` and `../lib` ,exclude `../lib/temp`.\n```json\n\"Lua.workspace.library\": {\n \"C:/lua\": true,\n \"../lib\": [\n \"temp/*\"\n ]\n}\n```\n",
"config.workspace.maxPreload": "Max preloaded files.",
"config.workspace.preloadFileSize": "Skip files larger than this value (KB) when preloading.",
"config.workspace.useGitIgnore": "Ignore files list in `.gitignore` ."