---@diagnostic disable: undefined-global config.runtime.version = "Lua runtime version." config.runtime.path = [[ When using `require`, how to find the file based on the input name. Setting this config to `?/init.lua` means that when you enter `require 'myfile'`, `${workspace}/myfile/init.lua` will be searched from the loaded files. if `runtime.pathStrict` is `false`, `${workspace}/**/myfile/init.lua` will also be searched. If you want to load files outside the workspace, you need to set `Lua.workspace.library` first. ]] config.runtime.pathStrict = 'When enabled, `runtime.path` will only search the first level of directories, see the description of `runtime.path`.' config.runtime.special = [[The custom global variables are regarded as some special built-in variables, and the language server will provide special support The following example shows that 'include' is treated as' require '. ```json "Lua.runtime.special" : { "include" : "require" } ``` ]] config.runtime.unicodeName = "Allows Unicode characters in name." config.runtime.nonstandardSymbol = "Supports non-standard symbols. Make sure that your runtime environment supports these symbols." config.runtime.plugin = "Plugin path. Please read [wiki](https://github.com/sumneko/lua-language-server/wiki/Plugin) to learn more." config.runtime.fileEncoding = "File encoding. The `ansi` option is only available under the `Windows` platform." 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. * `default`: Indicates that the library will be enabled or disabled according to the runtime version * `enable`: always enable * `disable`: always disable ]] config.diagnostics.enable = "Enable diagnostics." config.diagnostics.disable = "Disabled diagnostic (Use code in hover brackets)." config.diagnostics.globals = "Defined global variables." config.diagnostics.severity = "Modified diagnostic severity." config.diagnostics.neededFileStatus = [[ * Opened: only diagnose opened files * Any: diagnose all files * Disable: disable this diagnostic ]] config.diagnostics.workspaceDelay = "Latency (milliseconds) for workspace diagnostics. When you start the workspace, or edit any file, the entire workspace will be re-diagnosed in the background. Set to negative to disable workspace diagnostics." config.diagnostics.workspaceRate = "Workspace diagnostics run rate (%). Decreasing this value reduces CPU usage, but also reduces the speed of workspace diagnostics. The diagnosis of the file you are currently editing is always done at full speed and is not affected by this setting." config.diagnostics.libraryFiles = "How to diagnose files loaded via `Lua.workspace.library`." config.diagnostics.ignoredFiles = "How to diagnose ignored files." config.diagnostics.files.Enable = "Always diagnose these files." config.diagnostics.files.Opened = "Only when these files are opened will it be diagnosed." config.diagnostics.files.Disable = "These files are not diagnosed." config.workspace.ignoreDir = "Ignored files and directories (Use `.gitignore` grammar)."-- .. example.ignoreDir, config.workspace.ignoreSubmodules = "Ignore submodules." config.workspace.useGitIgnore = "Ignore files list in `.gitignore` ." config.workspace.maxPreload = "Max preloaded files." config.workspace.preloadFileSize = "Skip files larger than this value (KB) when preloading." config.workspace.library = "In addition to the current workspace, which directories will load files from. The files in these directories will be treated as externally provided code libraries, and some features (such as renaming fields) will not modify these files." config.workspace.checkThirdParty = [[ Automatic detection and adaptation of third-party libraries, currently supported libraries are: * OpenResty * Cocos4.0 * LÖVE * LÖVR * skynet * Jass ]] config.workspace.userThirdParty = 'Add private third-party library configuration file paths here, please refer to the built-in [configuration file path](https://github.com/sumneko/lua-language-server/tree/master/meta/3rd)' config.completion.enable = 'Enable completion.' config.completion.callSnippet = 'Shows function call snippets.' config.completion.callSnippet.Disable = "Only shows `function name`." config.completion.callSnippet.Both = "Shows `function name` and `call snippet`." config.completion.callSnippet.Replace = "Only shows `call snippet.`" config.completion.keywordSnippet = 'Shows keyword syntax snippets.' config.completion.keywordSnippet.Disable = "Only shows `keyword`." config.completion.keywordSnippet.Both = "Shows `keyword` and `syntax snippet`." config.completion.keywordSnippet.Replace = "Only shows `syntax snippet`." config.completion.displayContext = "Previewing the relevant code snippet of the suggestion may help you understand the usage of the suggestion. The number set indicates the number of intercepted lines in the code fragment. If it is set to `0`, this feature can be disabled." config.completion.workspaceWord = "Whether the displayed context word contains the content of other files in the workspace." config.completion.showWord = "Show contextual words in suggestions." config.completion.showWord.Enable = "Always show context words in suggestions." config.completion.showWord.Fallback = "Contextual words are only displayed when suggestions based on semantics cannot be provided." config.completion.showWord.Disable = "Do not display context words." config.completion.autoRequire = "When the input looks like a file name, automatically `require` this file." config.completion.showParams = "Display parameters in completion list. When the function has multiple definitions, they will be displayed separately." config.completion.requireSeparator = "The separator used when `require`." config.completion.postfix = "The symbol used to trigger the postfix suggestion." config.color.mode = "Color mode." config.color.mode.Semantic = "Semantic color. You may need to set `editor.semanticHighlighting.enabled` to `true` to take effect." config.color.mode.SemanticEnhanced = "Enhanced semantic color. Like `Semantic`, but with additional analysis which might be more computationally expensive." config.color.mode.Grammar = "Grammar color." config.semantic.enable = "Enable semantic color. You may need to set `editor.semanticHighlighting.enabled` to `true` to take effect." config.semantic.variable = "Semantic coloring of variables/fields/parameters." config.semantic.annotation = "Semantic coloring of type annotations." config.semantic.keyword = "Semantic coloring of keywords/literals/operators. You only need to enable this feature if your editor cannot do syntax coloring." config.signatureHelp.enable = "Enable signature help." config.hover.enable = "Enable hover." config.hover.viewString = "Hover to view the contents of a string (only if the literal contains an escape character)." config.hover.viewStringMax = "The maximum length of a hover to view the contents of a string." config.hover.viewNumber = "Hover to view numeric content (only if literal is not decimal)." config.hover.fieldInfer = "When hovering to view a table, type infer will be performed for each field. When the accumulated time of type infer reaches the set value (MS), the type infer of subsequent fields will be skipped." config.hover.previewFields = "When hovering to view a table, limits the maximum number of previews for fields." config.hover.enumsLimit = "When the value corresponds to multiple types, limit the number of types displaying." config.develop.enable = 'Developer mode. Do not enable, performance will be affected.' config.develop.debuggerPort = 'Listen port of debugger.' config.develop.debuggerWait = 'Suspend before debugger connects.' config.intelliSense.searchDepth = 'Set the search depth for IntelliSense. Increasing this value increases accuracy, but decreases performance. Different workspace have different tolerance for this setting. Please adjust it to the appropriate value.' config.intelliSense.fastGlobal = 'In the global variable completion, and view `_G` suspension prompt. This will slightly reduce the accuracy of type speculation, but it will have a significant performance improvement for projects that use a lot of global variables.' config.window.statusBar = 'Show extension status in status bar.' config.window.progressBar = 'Show progress bar in status bar.' config.hint.enable = 'Enable inlay hint.' config.hint.paramType = 'Show type hints at the parameter of the function.' config.hint.setType = 'Show hints of type at assignment operation.' config.hint.paramName = 'Show hints of parameter name at the function call.' config.hint.paramName.All = 'All types of parameters are shown.' config.hint.paramName.Literal = 'Only literal type parameters are shown.' config.hint.paramName.Disable = 'Disable parameter hints.' config.hint.arrayIndex = 'Show hints of array index when constructing a table.' config.hint.arrayIndex.Enable = 'Show hints in all tables.' config.hint.arrayIndex.Auto = 'Show hints only when the table is greater than 3 items, or the table is a mixed table.' config.hint.arrayIndex.Disable = 'Disable hints of array index.' config.format.enable = 'Enable code formatter.' config.telemetry.enable = [[ Enable telemetry to send your editor information and error logs over the network. Read our privacy policy [here](https://github.com/sumneko/lua-language-server/wiki/Privacy-Policy). ]] config.misc.parameters = '[Command line parameters](https://github.com/sumneko/lua-telemetry-server/tree/master/method) when starting the language service in VSCode.' config.IntelliSense.traceLocalSet = 'Please read [wiki](https://github.com/sumneko/lua-language-server/wiki/IntelliSense-optional-features) to learn more.' config.IntelliSense.traceReturn = 'Please read [wiki](https://github.com/sumneko/lua-language-server/wiki/IntelliSense-optional-features) to learn more.' config.IntelliSense.traceBeSetted = 'Please read [wiki](https://github.com/sumneko/lua-language-server/wiki/IntelliSense-optional-features) to learn more.' config.IntelliSense.traceFieldInject = 'Please read [wiki](https://github.com/sumneko/lua-language-server/wiki/IntelliSense-optional-features) to learn more.' config.diagnostics['unused-local'] = -- TODO: need translate! '未使用的局部变量' config.diagnostics['unused-function'] = -- TODO: need translate! '未使用的函数' config.diagnostics['undefined-global'] = -- TODO: need translate! '未定义的全局变量' config.diagnostics['global-in-nil-env'] = -- TODO: need translate! '不能使用全局变量( `_ENV` 被设置为了 `nil`)' config.diagnostics['unused-label'] = -- TODO: need translate! '未使用的标签' config.diagnostics['unused-vararg'] = -- TODO: need translate! '未使用的不定参数' config.diagnostics['trailing-space'] = -- TODO: need translate! '后置空格' config.diagnostics['redefined-local'] = -- TODO: need translate! '重复定义的局部变量' config.diagnostics['newline-call'] = -- TODO: need translate! '以 `(` 开始的新行,在语法上被解析为了上一行的函数调用' config.diagnostics['newfield-call'] = -- TODO: need translate! '在字面量表中,2行代码之间缺少分隔符,在语法上被解析为了一次索引操作' config.diagnostics['redundant-parameter'] = -- TODO: need translate! '函数调用时,传入了多余的参数' config.diagnostics['ambiguity-1'] = -- TODO: need translate! '优先级歧义,如:`num or 0 + 1`,推测用户的实际期望为 `(num or 0) + 1` ' config.diagnostics['lowercase-global'] = -- TODO: need translate! '首字母小写的全局变量定义' config.diagnostics['undefined-env-child'] = -- TODO: need translate! '`_ENV` 被设置为了新的字面量表,但是试图获取的全局变量不再这张表中' config.diagnostics['duplicate-index'] = -- TODO: need translate! '在字面量表中重复定义了索引' config.diagnostics['empty-block'] = -- TODO: need translate! '空代码块' config.diagnostics['redundant-value'] = -- TODO: need translate! '赋值操作时,值的数量比被赋值的对象多'