Skip to content

Commit e7033ae

Browse files
committed
1.1.1
1 parent 938d4b5 commit e7033ae

File tree

7 files changed

+27
-27
lines changed

7 files changed

+27
-27
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -645,5 +645,5 @@
645645
"type": "git",
646646
"url": "https://github.com/sumneko/lua-language-server"
647647
},
648-
"version": "1.1.0"
648+
"version": "1.1.1"
649649
}

package.nls.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@
2020
"config.diagnostics.enable": "Enable diagnostics.",
2121
"config.diagnostics.globals": "Defined global variables.\n",
2222
"config.diagnostics.severity": "Modified diagnostic severity.\n",
23-
"config.diagnostics.workspaceDelay": "`Only supported in beta` 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.",
24-
"config.diagnostics.workspaceRate": "`Only supported in beta` 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.",
23+
"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.",
24+
"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.",
2525
"config.hover.enable": "Enable hover.",
26-
"config.hover.fieldInfer": "`Only supported in beta` 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.",
26+
"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.",
2727
"config.hover.viewNumber": "Hover to view numeric content (only if literal is not decimal).",
2828
"config.hover.viewString": "Hover to view the contents of a string (only if the literal contains an escape character).",
2929
"config.hover.viewStringMax": "The maximum length of a hover to view the contents of a string.",
30-
"config.intelliSense.fastGlobal": "`Only supported in beta` 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.",
31-
"config.intelliSense.searchDepth": "`Only supported in beta` 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.",
30+
"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.",
31+
"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.",
3232
"config.runtime.path": "`package.path`",
33-
"config.runtime.special": "`Only supported in beta` The custom global variables are regarded as some special built-in variables, and the language server will provide special support",
33+
"config.runtime.special": "The custom global variables are regarded as some special built-in variables, and the language server will provide special support",
3434
"config.runtime.version": "Lua runtime version.",
3535
"config.signatureHelp.enable": "Enable signature help.",
3636
"config.workspace.ignoreDir": "Ignored directories (Use `.gitignore` grammar).\n",

package.nls.zh-cn.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@
2323
"config.diagnostics.severity": "修改诊断等级。\n",
2424
"config.diagnostics.unused-function": "未使用的函数",
2525
"config.diagnostics.unused-local": "未使用的局部变量",
26-
"config.diagnostics.workspaceDelay": "`仅beta支持` 进行工作区诊断的延迟(毫秒)。当你启动工作区,或编辑了任意文件后,将会在后台对整个工作区进行重新诊断。设置为负数可以禁用工作区诊断。",
27-
"config.diagnostics.workspaceRate": "`仅beta支持` 工作区诊断的运行速率(百分比)。降低该值会减少CPU占用,但是也会降低工作区诊断的速度。你当前正在编辑的文件的诊断总是全速完成,不受该选项影响。",
26+
"config.diagnostics.workspaceDelay": "进行工作区诊断的延迟(毫秒)。当你启动工作区,或编辑了任意文件后,将会在后台对整个工作区进行重新诊断。设置为负数可以禁用工作区诊断。",
27+
"config.diagnostics.workspaceRate": "工作区诊断的运行速率(百分比)。降低该值会减少CPU占用,但是也会降低工作区诊断的速度。你当前正在编辑的文件的诊断总是全速完成,不受该选项影响。",
2828
"config.hover.enable": "启用悬停提示。",
29-
"config.hover.fieldInfer": "`仅beta支持` 悬停提示查看表时,会对表的每个字段进行类型推测,当类型推测的用时累计达到该设定值(毫秒)时,将跳过后续字段的类型推测。",
29+
"config.hover.fieldInfer": "悬停提示查看表时,会对表的每个字段进行类型推测,当类型推测的用时累计达到该设定值(毫秒)时,将跳过后续字段的类型推测。",
3030
"config.hover.viewNumber": "悬停提示查看数字内容(仅当字面量不是十进制时)。",
3131
"config.hover.viewString": "悬停提示查看字符串内容(仅当字面量包含转义符时)。",
3232
"config.hover.viewStringMax": "悬停提示查看字符串内容时的最大长度。",
33-
"config.intelliSense.fastGlobal": "`仅beta支持` 在对全局变量进行补全,及查看 `_G` 的悬浮提示时进行优化。这会略微降低类型推测的准确度,但是对于大量使用全局变量的项目会有大幅的性能提升。",
34-
"config.intelliSense.searchDepth": "`仅beta支持` 设置智能感知的搜索深度。增大该值可以增加准确度,但会降低性能。不同的项目对该设置的容忍度差异较大,请自己调整为合适的值。",
33+
"config.intelliSense.fastGlobal": "在对全局变量进行补全,及查看 `_G` 的悬浮提示时进行优化。这会略微降低类型推测的准确度,但是对于大量使用全局变量的项目会有大幅的性能提升。",
34+
"config.intelliSense.searchDepth": "设置智能感知的搜索深度。增大该值可以增加准确度,但会降低性能。不同的项目对该设置的容忍度差异较大,请自己调整为合适的值。",
3535
"config.runtime.path": "`package.path`",
36-
"config.runtime.special": "`仅beta支持` 将自定义全局变量视为一些特殊的内置变量,语言服务将提供特殊的支持。\n下面这个例子表示将 `include` 视为 `require` 。\n```json\n\"Lua.runtime.special\" : {\n \"include\" : \"require\"\n}\n```\n",
36+
"config.runtime.special": "将自定义全局变量视为一些特殊的内置变量,语言服务将提供特殊的支持。\n下面这个例子表示将 `include` 视为 `require` 。\n```json\n\"Lua.runtime.special\" : {\n \"include\" : \"require\"\n}\n```\n",
3737
"config.runtime.version": "Lua运行版本。",
3838
"config.signatureHelp.enable": "启用参数提示。",
3939
"config.workspace.ignoreDir": "忽略的目录(使用 `.gitignore` 语法)。\n",

package/build.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
local json = require 'json-beautify'
22

3-
local VERSION = "1.1.0"
3+
local VERSION = "1.1.1"
44

55
local package = require 'package.package'
66
local fsu = require 'fs-utility'

server

setting/schema-zh-cn.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -422,13 +422,13 @@
422422
},
423423
"Lua.diagnostics.workspaceDelay": {
424424
"default": 0,
425-
"markdownDescription": "`仅beta支持` 进行工作区诊断的延迟(毫秒)。当你启动工作区,或编辑了任意文件后,将会在后台对整个工作区进行重新诊断。设置为负数可以禁用工作区诊断。",
425+
"markdownDescription": "进行工作区诊断的延迟(毫秒)。当你启动工作区,或编辑了任意文件后,将会在后台对整个工作区进行重新诊断。设置为负数可以禁用工作区诊断。",
426426
"scope": "resource",
427427
"type": "integer"
428428
},
429429
"Lua.diagnostics.workspaceRate": {
430430
"default": 100,
431-
"markdownDescription": "`仅beta支持` 工作区诊断的运行速率(百分比)。降低该值会减少CPU占用,但是也会降低工作区诊断的速度。你当前正在编辑的文件的诊断总是全速完成,不受该选项影响。",
431+
"markdownDescription": "工作区诊断的运行速率(百分比)。降低该值会减少CPU占用,但是也会降低工作区诊断的速度。你当前正在编辑的文件的诊断总是全速完成,不受该选项影响。",
432432
"scope": "resource",
433433
"type": "integer"
434434
},
@@ -440,7 +440,7 @@
440440
},
441441
"Lua.hover.fieldInfer": {
442442
"default": 3000,
443-
"markdownDescription": "`仅beta支持` 悬停提示查看表时,会对表的每个字段进行类型推测,当类型推测的用时累计达到该设定值(毫秒)时,将跳过后续字段的类型推测。",
443+
"markdownDescription": "悬停提示查看表时,会对表的每个字段进行类型推测,当类型推测的用时累计达到该设定值(毫秒)时,将跳过后续字段的类型推测。",
444444
"scope": "resource",
445445
"type": "integer"
446446
},
@@ -464,13 +464,13 @@
464464
},
465465
"Lua.intelliSense.fastGlobal": {
466466
"default": true,
467-
"markdownDescription": "`仅beta支持` 在对全局变量进行补全,及查看 `_G` 的悬浮提示时进行优化。这会略微降低类型推测的准确度,但是对于大量使用全局变量的项目会有大幅的性能提升。",
467+
"markdownDescription": "在对全局变量进行补全,及查看 `_G` 的悬浮提示时进行优化。这会略微降低类型推测的准确度,但是对于大量使用全局变量的项目会有大幅的性能提升。",
468468
"scope": "resource",
469469
"type": "boolean"
470470
},
471471
"Lua.intelliSense.searchDepth": {
472472
"default": 0,
473-
"markdownDescription": "`仅beta支持` 设置智能感知的搜索深度。增大该值可以增加准确度,但会降低性能。不同的项目对该设置的容忍度差异较大,请自己调整为合适的值。",
473+
"markdownDescription": "设置智能感知的搜索深度。增大该值可以增加准确度,但会降低性能。不同的项目对该设置的容忍度差异较大,请自己调整为合适的值。",
474474
"scope": "resource",
475475
"type": "integer"
476476
},
@@ -488,7 +488,7 @@
488488
"type": "array"
489489
},
490490
"Lua.runtime.special": {
491-
"markdownDescription": "`仅beta支持` 将自定义全局变量视为一些特殊的内置变量,语言服务将提供特殊的支持。\n下面这个例子表示将 `include` 视为 `require` 。\n```json\n\"Lua.runtime.special\" : {\n \"include\" : \"require\"\n}\n```\n",
491+
"markdownDescription": "将自定义全局变量视为一些特殊的内置变量,语言服务将提供特殊的支持。\n下面这个例子表示将 `include` 视为 `require` 。\n```json\n\"Lua.runtime.special\" : {\n \"include\" : \"require\"\n}\n```\n",
492492
"patternProperties": {
493493
"": {
494494
"default": "require",

setting/schema.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -422,13 +422,13 @@
422422
},
423423
"Lua.diagnostics.workspaceDelay": {
424424
"default": 0,
425-
"markdownDescription": "`Only supported in beta` 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.",
425+
"markdownDescription": "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.",
426426
"scope": "resource",
427427
"type": "integer"
428428
},
429429
"Lua.diagnostics.workspaceRate": {
430430
"default": 100,
431-
"markdownDescription": "`Only supported in beta` 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.",
431+
"markdownDescription": "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.",
432432
"scope": "resource",
433433
"type": "integer"
434434
},
@@ -440,7 +440,7 @@
440440
},
441441
"Lua.hover.fieldInfer": {
442442
"default": 3000,
443-
"markdownDescription": "`Only supported in beta` 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.",
443+
"markdownDescription": "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.",
444444
"scope": "resource",
445445
"type": "integer"
446446
},
@@ -464,13 +464,13 @@
464464
},
465465
"Lua.intelliSense.fastGlobal": {
466466
"default": true,
467-
"markdownDescription": "`Only supported in beta` 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.",
467+
"markdownDescription": "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.",
468468
"scope": "resource",
469469
"type": "boolean"
470470
},
471471
"Lua.intelliSense.searchDepth": {
472472
"default": 0,
473-
"markdownDescription": "`Only supported in beta` 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.",
473+
"markdownDescription": "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.",
474474
"scope": "resource",
475475
"type": "integer"
476476
},
@@ -488,7 +488,7 @@
488488
"type": "array"
489489
},
490490
"Lua.runtime.special": {
491-
"markdownDescription": "`Only supported in beta` The custom global variables are regarded as some special built-in variables, and the language server will provide special support",
491+
"markdownDescription": "The custom global variables are regarded as some special built-in variables, and the language server will provide special support",
492492
"patternProperties": {
493493
"": {
494494
"default": "require",

0 commit comments

Comments
 (0)