395 lines
20 KiB
Lua
395 lines
20 KiB
Lua
---@diagnostic disable: undefined-global
|
||
|
||
config.runtime.version =
|
||
"Lua运行版本。"
|
||
config.runtime.path =
|
||
[[
|
||
当使用 `require` 时,如何根据输入的名字来查找文件。
|
||
此选项设置为 `?/init.lua` 意味着当你输入 `require 'myfile'` 时,会从已加载的文件中搜索 `{workspace}/myfile/init.lua`。
|
||
当 `runtime.pathStrict` 设置为 `false` 时,还会尝试搜索 `${workspace}/**/myfile/init.lua`。
|
||
如果你想要加载工作区以外的文件,你需要先设置 `Lua.workspace.library`。
|
||
]]
|
||
config.runtime.pathStrict =
|
||
'启用后 `runtime.path` 将只搜索第一层目录,见 `runtime.path` 的说明。'
|
||
config.runtime.special =
|
||
[[将自定义全局变量视为一些特殊的内置变量,语言服务将提供特殊的支持。
|
||
下面这个例子表示将 `include` 视为 `require` 。
|
||
```json
|
||
"Lua.runtime.special" : {
|
||
"include" : "require"
|
||
}
|
||
```
|
||
]]
|
||
config.runtime.unicodeName =
|
||
"允许在名字中使用 Unicode 字符。"
|
||
config.runtime.nonstandardSymbol =
|
||
"支持非标准的符号。请务必确认你的运行环境支持这些符号。"
|
||
config.runtime.plugin =
|
||
"插件路径,请查阅[文档](https://github.com/sumneko/lua-language-server/wiki/Plugins)了解用法。"
|
||
config.runtime.pluginArgs = -- TODO: need translate!
|
||
"Additional arguments for the plugin."
|
||
config.runtime.fileEncoding =
|
||
"文件编码,`ansi` 选项只在 `Windows` 平台下有效。"
|
||
config.runtime.builtin =
|
||
[[
|
||
调整内置库的启用状态,你可以根据实际运行环境禁用掉不存在的库(或重新定义)。
|
||
|
||
* `default`: 表示库会根据运行版本启用或禁用
|
||
* `enable`: 总是启用
|
||
* `disable`: 总是禁用
|
||
]]
|
||
config.runtime.meta =
|
||
'meta文件的目录名称格式。'
|
||
config.diagnostics.enable =
|
||
"启用诊断。"
|
||
config.diagnostics.disable =
|
||
"禁用的诊断(使用浮框括号内的代码)。"
|
||
config.diagnostics.globals =
|
||
"已定义的全局变量。"
|
||
config.diagnostics.severity =
|
||
[[
|
||
修改诊断等级。
|
||
以 `!` 结尾的设置优先级高于组设置 `diagnostics.groupSeverity`。
|
||
]]
|
||
config.diagnostics.neededFileStatus =
|
||
[[
|
||
* Opened: 只诊断打开的文件
|
||
* Any: 诊断任何文件
|
||
* None: 禁用此诊断
|
||
|
||
以 `!` 结尾的设置优先级高于组设置 `diagnostics.groupFileStatus`。
|
||
]]
|
||
config.diagnostics.groupSeverity =
|
||
[[
|
||
批量修改一个组中的诊断等级。
|
||
设置为 `Fallback` 意味着组中的诊断由 `diagnostics.severity` 单独设置。
|
||
其他设置将覆盖单独设置,但是不会覆盖以 `!` 结尾的设置。
|
||
]]
|
||
config.diagnostics.groupFileStatus =
|
||
[[
|
||
批量修改一个组中的文件状态。
|
||
|
||
* Opened: 只诊断打开的文件
|
||
* Any: 诊断任何文件
|
||
* None: 禁用此诊断
|
||
|
||
设置为 `Fallback` 意味着组中的诊断由 `diagnostics.neededFileStatus` 单独设置。
|
||
其他设置将覆盖单独设置,但是不会覆盖以 `!` 结尾的设置。
|
||
]]
|
||
config.diagnostics.workspaceDelay =
|
||
"进行工作区诊断的延迟(毫秒)。当你启动工作区,或编辑了任意文件后,将会在后台对整个工作区进行重新诊断。设置为负数可以禁用工作区诊断。"
|
||
config.diagnostics.workspaceRate =
|
||
"工作区诊断的运行速率(百分比)。降低该值会减少CPU占用,但是也会降低工作区诊断的速度。你当前正在编辑的文件的诊断总是全速完成,不受该选项影响。"
|
||
config.diagnostics.libraryFiles =
|
||
"如何诊断通过 `Lua.workspace.library` 加载的文件。"
|
||
config.diagnostics.libraryFiles.Enable =
|
||
"总是诊断这些文件。"
|
||
config.diagnostics.libraryFiles.Opened =
|
||
"只有打开这些文件时才会诊断。"
|
||
config.diagnostics.libraryFiles.Disable =
|
||
"不诊断这些文件。"
|
||
config.diagnostics.ignoredFiles =
|
||
"如何诊断被忽略的文件。"
|
||
config.diagnostics.ignoredFiles.Enable =
|
||
"总是诊断这些文件。"
|
||
config.diagnostics.ignoredFiles.Opened =
|
||
"只有打开这些文件时才会诊断。"
|
||
config.diagnostics.ignoredFiles.Disable =
|
||
"不诊断这些文件。"
|
||
config.diagnostics.disableScheme =
|
||
'不诊断使用以下 scheme 的lua文件。'
|
||
config.diagnostics.unusedLocalExclude =
|
||
'如果变量名匹配以下规则,则不对其进行 `unused-local` 诊断。'
|
||
config.workspace.ignoreDir =
|
||
"忽略的文件与目录(使用 `.gitignore` 语法)。"
|
||
config.workspace.ignoreSubmodules =
|
||
"忽略子模块。"
|
||
config.workspace.useGitIgnore =
|
||
"忽略 `.gitignore` 中列举的文件。"
|
||
config.workspace.maxPreload =
|
||
"最大预加载文件数。"
|
||
config.workspace.preloadFileSize =
|
||
"预加载时跳过大小大于该值(KB)的文件。"
|
||
config.workspace.library =
|
||
"除了当前工作区以外,还会从哪些目录中加载文件。这些目录中的文件将被视作外部提供的代码库,部分操作(如重命名字段)不会修改这些文件。"
|
||
config.workspace.checkThirdParty =
|
||
[[
|
||
自动检测与适配第三方库,目前支持的库为:
|
||
|
||
* OpenResty
|
||
* Cocos4.0
|
||
* LÖVE
|
||
* LÖVR
|
||
* skynet
|
||
* Jass
|
||
]]
|
||
config.workspace.userThirdParty =
|
||
'在这里添加私有的第三方库适配文件路径,请参考内置的[配置文件路径](https://github.com/sumneko/lua-language-server/tree/master/meta/3rd)'
|
||
config.workspace.supportScheme =
|
||
'为以下 scheme 的lua文件提供语言服务。'
|
||
config.completion.enable =
|
||
'启用自动完成。'
|
||
config.completion.callSnippet =
|
||
'显示函数调用片段。'
|
||
config.completion.callSnippet.Disable =
|
||
"只显示 `函数名`。"
|
||
config.completion.callSnippet.Both =
|
||
"显示 `函数名` 与 `调用片段`。"
|
||
config.completion.callSnippet.Replace =
|
||
"只显示 `调用片段`。"
|
||
config.completion.keywordSnippet =
|
||
'显示关键字语法片段'
|
||
config.completion.keywordSnippet.Disable =
|
||
"只显示 `关键字`。"
|
||
config.completion.keywordSnippet.Both =
|
||
"显示 `关键字` 与 `语法片段`。"
|
||
config.completion.keywordSnippet.Replace =
|
||
"只显示 `语法片段`。"
|
||
config.completion.displayContext =
|
||
"预览建议的相关代码片段,可能可以帮助你了解这项建议的用法。设置的数字表示代码片段的截取行数,设置为`0`可以禁用此功能。"
|
||
config.completion.workspaceWord =
|
||
"显示的上下文单词是否包含工作区中其他文件的内容。"
|
||
config.completion.showWord =
|
||
"在建议中显示上下文单词。"
|
||
config.completion.showWord.Enable =
|
||
"总是在建议中显示上下文单词。"
|
||
config.completion.showWord.Fallback =
|
||
"无法根据语义提供建议时才显示上下文单词。"
|
||
config.completion.showWord.Disable =
|
||
"不显示上下文单词。"
|
||
config.completion.autoRequire =
|
||
"输入内容看起来是个文件名时,自动 `require` 此文件。"
|
||
config.completion.showParams =
|
||
"在建议列表中显示函数的参数信息,函数拥有多个定义时会分开显示。"
|
||
config.completion.requireSeparator =
|
||
"`require` 时使用的分隔符。"
|
||
config.completion.postfix =
|
||
"用于触发后缀建议的符号。"
|
||
config.color.mode =
|
||
"着色模式。"
|
||
config.color.mode.Semantic =
|
||
"语义着色。你可能需要同时将 `editor.semanticHighlighting.enabled` 设置为 `true` 才能生效。"
|
||
config.color.mode.SemanticEnhanced =
|
||
"增强的语义颜色。 类似于`Semantic`,但会进行额外的分析(也会带来额外的开销)。"
|
||
config.color.mode.Grammar =
|
||
"语法着色。"
|
||
config.semantic.enable =
|
||
"启用语义着色。你可能需要同时将 `editor.semanticHighlighting.enabled` 设置为 `true` 才能生效。"
|
||
config.semantic.variable =
|
||
"对变量/字段/参数进行语义着色。"
|
||
config.semantic.annotation =
|
||
"对类型注解进行语义着色。"
|
||
config.semantic.keyword =
|
||
"对关键字/字面量/运算符进行语义着色。只有当你的编辑器无法进行语法着色时才需要启用此功能。"
|
||
config.signatureHelp.enable =
|
||
"启用参数提示。"
|
||
config.hover.enable =
|
||
"启用悬停提示。"
|
||
config.hover.viewString =
|
||
"悬停提示查看字符串内容(仅当字面量包含转义符时)。"
|
||
config.hover.viewStringMax =
|
||
"悬停提示查看字符串内容时的最大长度。"
|
||
config.hover.viewNumber =
|
||
"悬停提示查看数字内容(仅当字面量不是十进制时)。"
|
||
config.hover.fieldInfer =
|
||
"悬停提示查看表时,会对表的每个字段进行类型推测,当类型推测的用时累计达到该设定值(毫秒)时,将跳过后续字段的类型推测。"
|
||
config.hover.previewFields =
|
||
"悬停提示查看表时,限制表内字段的最大预览数量。"
|
||
config.hover.enumsLimit =
|
||
"当值对应多个类型时,限制类型的显示数量。"
|
||
config.hover.expandAlias =
|
||
[[
|
||
是否展开别名。例如 `---@alias myType boolean|number` 展开后显示为 `boolean|number`,否则显示为 `myType`。
|
||
]]
|
||
config.develop.enable =
|
||
'开发者模式。请勿开启,会影响性能。'
|
||
config.develop.debuggerPort =
|
||
'调试器监听端口。'
|
||
config.develop.debuggerWait =
|
||
'调试器连接之前挂起。'
|
||
config.intelliSense.searchDepth =
|
||
'设置智能感知的搜索深度。增大该值可以增加准确度,但会降低性能。不同的项目对该设置的容忍度差异较大,请自己调整为合适的值。'
|
||
config.intelliSense.fastGlobal =
|
||
'在对全局变量进行补全,及查看 `_G` 的悬浮提示时进行优化。这会略微降低类型推测的准确度,但是对于大量使用全局变量的项目会有大幅的性能提升。'
|
||
config.window.statusBar =
|
||
'在状态栏显示插件状态。'
|
||
config.window.progressBar =
|
||
'在状态栏显示进度条。'
|
||
config.hint.enable =
|
||
'启用内联提示。'
|
||
config.hint.paramType =
|
||
'在函数的参数位置提示类型。'
|
||
config.hint.setType =
|
||
'在赋值操作位置提示类型。'
|
||
config.hint.paramName =
|
||
'在函数调用处提示参数名。'
|
||
config.hint.paramName.All =
|
||
'所有类型的参数均进行提示。'
|
||
config.hint.paramName.Literal =
|
||
'只有字面量类型的参数进行提示。'
|
||
config.hint.paramName.Disable =
|
||
'禁用参数提示。'
|
||
config.hint.arrayIndex =
|
||
'在构造表时提示数组索引。'
|
||
config.hint.arrayIndex.Enable =
|
||
'所有的表中都提示数组索引。'
|
||
config.hint.arrayIndex.Auto =
|
||
'只有表大于3项,或者表是混合类型时才进行提示。'
|
||
config.hint.arrayIndex.Disable =
|
||
'禁用数组索引提示。'
|
||
config.hint.await =
|
||
'如果调用的函数被标记为了 `---@async` ,则在调用处提示 `await` 。'
|
||
config.hint.semicolon =
|
||
'若语句尾部没有分号,则显示虚拟分号。'
|
||
config.hint.semicolon.All =
|
||
'所有语句都显示虚拟分号。'
|
||
config.hint.semicolon.SameLine =
|
||
'2个语句在同一行时,在它们之间显示分号。'
|
||
config.hint.semicolon.Disable =
|
||
'禁用虚拟分号。'
|
||
config.format.enable =
|
||
'启用代码格式化程序。'
|
||
config.format.defaultConfig =
|
||
[[
|
||
默认的格式化配置,优先级低于工作区内的 `.editorconfig` 文件。
|
||
请查阅[格式化文档](https://github.com/CppCXY/EmmyLuaCodeStyle/tree/master/docs)了解用法。
|
||
]]
|
||
config.spell.dict =
|
||
'拼写检查的自定义单词。'
|
||
config.telemetry.enable =
|
||
[[
|
||
启用遥测,通过网络发送你的编辑器信息与错误日志。在[此处](https://github.com/sumneko/lua-language-server/wiki/Home#privacy)阅读我们的隐私声明。
|
||
]]
|
||
config.misc.parameters =
|
||
'VSCode中启动语言服务时的[命令行参数](https://github.com/sumneko/lua-language-server/wiki/Getting-Started#arguments)。'
|
||
config.IntelliSense.traceLocalSet =
|
||
'请查阅[文档](https://github.com/sumneko/lua-language-server/wiki/IntelliSense-optional-features)了解用法。'
|
||
config.IntelliSense.traceReturn =
|
||
'请查阅[文档](https://github.com/sumneko/lua-language-server/wiki/IntelliSense-optional-features)了解用法。'
|
||
config.IntelliSense.traceBeSetted =
|
||
'请查阅[文档](https://github.com/sumneko/lua-language-server/wiki/IntelliSense-optional-features)了解用法。'
|
||
config.IntelliSense.traceFieldInject =
|
||
'请查阅[文档](https://github.com/sumneko/lua-language-server/wiki/IntelliSense-optional-features)了解用法。'
|
||
config.type.castNumberToInteger =
|
||
'允许将 `number` 类型赋给 `integer` 类型。'
|
||
config.type.weakUnionCheck =
|
||
[[
|
||
联合类型中只要有一个子类型满足条件,则联合类型也满足条件。
|
||
|
||
此设置为 `false` 时,`number|boolean` 类型无法赋给 `number` 类型;为 `true` 时则可以。
|
||
]]
|
||
config.type.weakNilCheck =
|
||
[[
|
||
对联合类型进行类型检查时,忽略其中的 `nil`。
|
||
|
||
此设置为 `false` 时,`numer|nil` 类型无法赋给 `number` 类型;为 `true` 是则可以。
|
||
]]
|
||
config.diagnostics['unused-local'] =
|
||
'未使用的局部变量'
|
||
config.diagnostics['unused-function'] =
|
||
'未使用的函数'
|
||
config.diagnostics['undefined-global'] =
|
||
'未定义的全局变量'
|
||
config.diagnostics['global-in-nil-env'] =
|
||
'不能使用全局变量( `_ENV` 被设置为了 `nil`)'
|
||
config.diagnostics['unused-label'] =
|
||
'未使用的标签'
|
||
config.diagnostics['unused-vararg'] =
|
||
'未使用的不定参数'
|
||
config.diagnostics['trailing-space'] =
|
||
'后置空格'
|
||
config.diagnostics['redefined-local'] =
|
||
'重复定义的局部变量'
|
||
config.diagnostics['newline-call'] =
|
||
'以 `(` 开始的新行,在语法上被解析为了上一行的函数调用'
|
||
config.diagnostics['newfield-call'] =
|
||
'在字面量表中,2行代码之间缺少分隔符,在语法上被解析为了一次索引操作'
|
||
config.diagnostics['redundant-parameter'] =
|
||
'函数调用时,传入了多余的参数'
|
||
config.diagnostics['ambiguity-1'] =
|
||
'优先级歧义,如:`num or 0 + 1`,推测用户的实际期望为 `(num or 0) + 1` '
|
||
config.diagnostics['lowercase-global'] =
|
||
'首字母小写的全局变量定义'
|
||
config.diagnostics['undefined-env-child'] =
|
||
'`_ENV` 被设置为了新的字面量表,但是试图获取的全局变量不再这张表中'
|
||
config.diagnostics['duplicate-index'] =
|
||
'在字面量表中重复定义了索引'
|
||
config.diagnostics['empty-block'] =
|
||
'空代码块'
|
||
config.diagnostics['redundant-value'] =
|
||
'赋值操作时,值的数量比被赋值的对象多'
|
||
config.diagnostics['assign-type-mismatch'] = -- TODO: need translate!
|
||
'Enable diagnostics for assignments in which the value\'s type does not match the type of the assigned variable.'
|
||
config.diagnostics['await-in-sync'] = -- TODO: need translate!
|
||
'Enable diagnostics for calls of asynchronous functions within a synchronous function.'
|
||
config.diagnostics['cast-local-type'] = -- TODO: need translate!
|
||
'Enable diagnostics for casts of local variables where the target type does not match the defined type.'
|
||
config.diagnostics['cast-type-mismatch'] = -- TODO: need translate!
|
||
'Enable diagnostics for casts where the target type does not match the initial type.'
|
||
config.diagnostics['circular-doc-class'] = -- TODO: need translate!
|
||
'Enable diagnostics for two classes inheriting from each other introducing a circular relation.'
|
||
config.diagnostics['close-non-object'] = -- TODO: need translate!
|
||
'Enable diagnostics for attempts to close a variable with a non-object.'
|
||
config.diagnostics['code-after-break'] = -- TODO: need translate!
|
||
'Enable diagnostics for code placed after a break statement in a loop.'
|
||
config.diagnostics['codestyle-check'] = -- TODO: need translate!
|
||
'Enable diagnostics for incorrectly styled lines.'
|
||
config.diagnostics['count-down-loop'] = -- TODO: need translate!
|
||
'Enable diagnostics for `for` loops which will never reach their max/limit because the loop is incrementing instead of decrementing.'
|
||
config.diagnostics['deprecated'] = -- TODO: need translate!
|
||
'Enable diagnostics to highlight deprecated API.'
|
||
config.diagnostics['different-requires'] = -- TODO: need translate!
|
||
'Enable diagnostics for files which are required by two different paths.'
|
||
config.diagnostics['discard-returns'] = -- TODO: need translate!
|
||
'Enable diagnostics for calls of functions annotated with `---@nodiscard` where the return values are ignored.'
|
||
config.diagnostics['doc-field-no-class'] = -- TODO: need translate!
|
||
'Enable diagnostics to highlight a field annotation without a defining class annotation.'
|
||
config.diagnostics['duplicate-doc-alias'] = -- TODO: need translate!
|
||
'Enable diagnostics for a duplicated alias annotation name.'
|
||
config.diagnostics['duplicate-doc-field'] = -- TODO: need translate!
|
||
'Enable diagnostics for a duplicated field annotation name.'
|
||
config.diagnostics['duplicate-doc-param'] = -- TODO: need translate!
|
||
'Enable diagnostics for a duplicated param annotation name.'
|
||
config.diagnostics['duplicate-set-field'] = -- TODO: need translate!
|
||
'Enable diagnostics for setting the same field in a class more than once.'
|
||
config.diagnostics['missing-parameter'] = -- TODO: need translate!
|
||
'Enable diagnostics for function calls where the number of arguments is less than the number of annotated function parameters.'
|
||
config.diagnostics['missing-return'] = -- TODO: need translate!
|
||
'Enable diagnostics for functions with return annotations which have no return statement.'
|
||
config.diagnostics['missing-return-value'] = -- TODO: need translate!
|
||
'Enable diagnostics for return statements without values although the containing function declares returns.'
|
||
config.diagnostics['need-check-nil'] = -- TODO: need translate!
|
||
'Enable diagnostics for variable usages if `nil` or an optional (potentially `nil`) value was assigned to the variable before.'
|
||
config.diagnostics['no-unknown'] = -- TODO: need translate!
|
||
'Enable diagnostics for cases in which the type cannot be inferred.'
|
||
config.diagnostics['not-yieldable'] = -- TODO: need translate!
|
||
'Enable diagnostics for calls to `coroutine.yield()` when it is not permitted.'
|
||
config.diagnostics['param-type-mismatch'] = -- TODO: need translate!
|
||
'Enable diagnostics for function calls where the type of a provided parameter does not match the type of the annotated function definition.'
|
||
config.diagnostics['redundant-return'] = -- TODO: need translate!
|
||
'Enable diagnostics for return statements which are not needed because the function would exit on its own.'
|
||
config.diagnostics['redundant-return-value']= -- TODO: need translate!
|
||
'Enable diagnostics for return statements which return an extra value which is not specified by a return annotation.'
|
||
config.diagnostics['return-type-mismatch'] = -- TODO: need translate!
|
||
'Enable diagnostics for return values whose type does not match the type declared in the corresponding return annotation.'
|
||
config.diagnostics['spell-check'] = -- TODO: need translate!
|
||
'Enable diagnostics for typos in strings.'
|
||
config.diagnostics['unbalanced-assignments']= -- TODO: need translate!
|
||
'Enable diagnostics on multiple assignments if not all variables obtain a value (e.g., `local x,y = 1`).'
|
||
config.diagnostics['undefined-doc-class'] = -- TODO: need translate!
|
||
'Enable diagnostics for class annotations in which an undefined class is referenced.'
|
||
config.diagnostics['undefined-doc-name'] = -- TODO: need translate!
|
||
'Enable diagnostics for type annotations referencing an undefined type or alias.'
|
||
config.diagnostics['undefined-doc-param'] = -- TODO: need translate!
|
||
'Enable diagnostics for cases in which a parameter annotation is given without declaring the parameter in the function definition.'
|
||
config.diagnostics['undefined-field'] = -- TODO: need translate!
|
||
'Enable diagnostics for cases in which an undefined field of a variable is read.'
|
||
config.diagnostics['unknown-cast-variable'] = -- TODO: need translate!
|
||
'Enable diagnostics for casts of undefined variables.'
|
||
config.diagnostics['unknown-diag-code'] = -- TODO: need translate!
|
||
'Enable diagnostics in cases in which an unknown diagnostics code is entered.'
|
||
config.diagnostics['unknown-operator'] = -- TODO: need translate!
|
||
'Enable diagnostics for unknown operators.'
|
||
config.diagnostics['unreachable-code'] = -- TODO: need translate!
|
||
'Enable diagnostics for unreachable code.'
|