diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2019-06-24 16:58:49 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2019-06-24 16:58:49 +0800 |
commit | 0e3c22455e4398541471351291522b200417e31c (patch) | |
tree | be27dee3e173adecaeaf04be307d1e4558f8a887 /package.nls.json | |
parent | cc97259ed0d37d964e16bc37c0be3e9e982e719f (diff) | |
download | lua-language-server-0e3c22455e4398541471351291522b200417e31c.zip |
实现library
Diffstat (limited to 'package.nls.json')
-rw-r--r-- | package.nls.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package.nls.json b/package.nls.json index 2fc65bcf..81fe0500 100644 --- a/package.nls.json +++ b/package.nls.json @@ -6,7 +6,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": "加载的外部函数库。\n下面这个例子表示加载`C:/lua`中的所有文件,以及加载`../lib`中的`.txt`与`.lua`文件,但不加载`../lib/temp`中的`.txt`文件。加载的文件最终会受文件关联的影响,因此需要设置`.txt`文件关联`lua`后`*.txt`才有意义。\n```json\n\"Lua.workspace.library\": {\n \"C:/lua\": true,\n \"../lib\": [\n \"*.txt\",\n \"*.lua\",\n \"!/temp/**/*.txt\"\n ]\n}\n```\n", + "config.workspace.library": "加载的外部函数库。\n下面这个例子表示加载`C:/lua`中的所有文件,以及加载`../lib`中的`.txt`与`.lua`文件,但不加载`../lib/temp`中的`.txt`文件。\n```json\n\"Lua.workspace.library\": {\n \"C:/lua\": true,\n \"../lib\": [\n \"*.txt\",\n \"*.lua\",\n \"!/temp/**/*.txt\"\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` ." |