|
3 | 3 | "config.IntelliSense.traceFieldInject": "Please read [wiki](https://github.com/sumneko/lua-language-server/wiki/IntelliSense-optional-features) to learn more.", |
4 | 4 | "config.IntelliSense.traceLocalSet": "Please read [wiki](https://github.com/sumneko/lua-language-server/wiki/IntelliSense-optional-features) to learn more.", |
5 | 5 | "config.IntelliSense.traceReturn": "Please read [wiki](https://github.com/sumneko/lua-language-server/wiki/IntelliSense-optional-features) to learn more.", |
| 6 | + "config.codeLens.enable": "Enable code lens.", |
6 | 7 | "config.color.mode": "Color mode.", |
7 | 8 | "config.color.mode.Grammar": "Grammar color.", |
8 | 9 | "config.color.mode.Semantic": "Semantic color. You may need to set `editor.semanticHighlighting.enabled` to `true` to take effect.", |
|
36 | 37 | "config.diagnostics.await-in-sync": "Enable diagnostics for calls of asynchronous functions within a synchronous function.", |
37 | 38 | "config.diagnostics.cast-local-type": "Enable diagnostics for casts of local variables where the target type does not match the defined type.", |
38 | 39 | "config.diagnostics.cast-type-mismatch": "Enable diagnostics for casts where the target type does not match the initial type.", |
39 | | - "config.diagnostics.circle-doc-class": "Enable diagnostics for two classes inheriting from each other introducing a circular relation.", |
| 40 | + "config.diagnostics.circular-doc-class": "Enable diagnostics for two classes inheriting from each other introducing a circular relation.", |
40 | 41 | "config.diagnostics.close-non-object": "Enable diagnostics for attempts to close a variable with a non-object.", |
41 | 42 | "config.diagnostics.code-after-break": "Enable diagnostics for code placed after a break statement in a loop.", |
42 | 43 | "config.diagnostics.codestyle": "* codestyle-check\n* spell-check", |
|
65 | 66 | "config.diagnostics.ignoredFiles.Disable": "These files are not diagnosed.", |
66 | 67 | "config.diagnostics.ignoredFiles.Enable": "Always diagnose these files.", |
67 | 68 | "config.diagnostics.ignoredFiles.Opened": "Only when these files are opened will it be diagnosed.", |
| 69 | + "config.diagnostics.invisible": "Enable diagnostics for accesses to fields which are invisible.", |
68 | 70 | "config.diagnostics.libraryFiles": "How to diagnose files loaded via `Lua.workspace.library`.", |
69 | 71 | "config.diagnostics.libraryFiles.Disable": "These files are not diagnosed.", |
70 | 72 | "config.diagnostics.libraryFiles.Enable": "Always diagnose these files.", |
71 | 73 | "config.diagnostics.libraryFiles.Opened": "Only when these files are opened will it be diagnosed.", |
72 | | - "config.diagnostics.invisible": "Enable diagnostics for accesses to fields which are invisible.", |
73 | 74 | "config.diagnostics.lowercase-global": "首字母小写的全局变量定义", |
74 | 75 | "config.diagnostics.luadoc": "* circle-doc-class\n* doc-field-no-class\n* duplicate-doc-alias\n* duplicate-doc-field\n* duplicate-doc-param\n* undefined-doc-class\n* undefined-doc-name\n* undefined-doc-param\n* unknown-cast-variable\n* unknown-diag-code\n* unknown-operator", |
75 | 76 | "config.diagnostics.missing-parameter": "Enable diagnostics for function calls where the number of arguments is less than the number of annotated function parameters.", |
|
154 | 155 | "config.misc.parameters": "[Command line parameters](https://github.com/sumneko/lua-telemetry-server/tree/master/method) when starting the language service in VSCode.", |
155 | 156 | "config.runtime.builtin": "Adjust the enabled state of the built-in library. You can disable (or redefine) the non-existent library according to the actual runtime environment.\n\n* `default`: Indicates that the library will be enabled or disabled according to the runtime version\n* `enable`: always enable\n* `disable`: always disable\n", |
156 | 157 | "config.runtime.fileEncoding": "File encoding. The `ansi` option is only available under the `Windows` platform.", |
157 | | - "config.runtime.fileEncoding.utf8" : "utf8", |
158 | | - "config.runtime.fileEncoding.ansi": "ansi", |
159 | | - "config.runtime.fileEncoding.utf16le" : "utf16le", |
160 | | - "config.runtime.fileEncoding.utf16be": "utf16be", |
161 | 158 | "config.runtime.meta": "Format of the directory name of the meta files.", |
162 | 159 | "config.runtime.nonstandardSymbol": "Supports non-standard symbols. Make sure that your runtime environment supports these symbols.", |
163 | 160 | "config.runtime.path": "When using `require`, how to find the file based on the input name.\nSetting this config to `?/init.lua` means that when you enter `require 'myfile'`, `${workspace}/myfile/init.lua` will be searched from the loaded files.\nif `runtime.pathStrict` is `false`, `${workspace}/**/myfile/init.lua` will also be searched.\nIf you want to load files outside the workspace, you need to set `Lua.workspace.library` first.\n", |
|
0 commit comments