Skip to content

Commit 5f8ac5a

Browse files
committed
0.21.4
1 parent cd43d10 commit 5f8ac5a

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -540,5 +540,5 @@
540540
"type": "git",
541541
"url": "https://github.com/sumneko/lua-language-server"
542542
},
543-
"version": "0.21.3"
543+
"version": "0.21.4"
544544
}

package.nls.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"config.hover.viewString": "Hover to view the contents of a string (only if the literal contains an escape character).",
2626
"config.hover.viewStringMax": "The maximum length of a hover to view the contents of a string.",
2727
"config.runtime.path": "`package.path`",
28-
"config.runtime.special": "The custom global variables are regarded as some special built-in variables, and the language server will provide special support",
28+
"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",
2929
"config.runtime.version": "Lua runtime version.",
3030
"config.signatureHelp.enable": "Enable signature help.",
3131
"config.workspace.ignoreDir": "Ignored directories (Use `.gitignore` grammar).\n```json\n\"Lua.workspace.ignoreDir\" : [\n \"temp/*.*\",\n \"!temp/*.lua\"\n]\n```\n",

package.nls.zh-cn.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"config.hover.viewString": "悬停提示查看字符串内容(仅当字面量包含转义符时)。",
2626
"config.hover.viewStringMax": "悬停提示查看字符串内容时的最大长度。",
2727
"config.runtime.path": "`package.path`",
28-
"config.runtime.special": "将自定义全局变量视为一些特殊的内置变量,语言服务将提供特殊的支持。\n下面这个例子表示将 `include` 视为 `require` 。\n```json\n\"Lua.runtime.special\" : {\n \"include\" : \"require\"\n}\n```\n",
28+
"config.runtime.special": "`仅beta支持` 将自定义全局变量视为一些特殊的内置变量,语言服务将提供特殊的支持。\n下面这个例子表示将 `include` 视为 `require` 。\n```json\n\"Lua.runtime.special\" : {\n \"include\" : \"require\"\n}\n```\n",
2929
"config.runtime.version": "Lua运行版本。",
3030
"config.signatureHelp.enable": "启用参数提示。",
3131
"config.workspace.ignoreDir": "忽略的目录(使用 `.gitignore` 语法)。\n```json\n\"Lua.workspace.ignoreDir\" : [\n \"temp/*.*\",\n \"!temp/*.lua\"\n]\n```\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 = "0.21.3"
3+
local VERSION = "0.21.4"
44

55
local package = require 'package.package'
66

setting/schema-zh-cn.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@
383383
"type": "array"
384384
},
385385
"Lua.runtime.special": {
386-
"markdownDescription": "将自定义全局变量视为一些特殊的内置变量,语言服务将提供特殊的支持。\n下面这个例子表示将 `include` 视为 `require` 。\n```json\n\"Lua.runtime.special\" : {\n \"include\" : \"require\"\n}\n```\n",
386+
"markdownDescription": "`仅beta支持` 将自定义全局变量视为一些特殊的内置变量,语言服务将提供特殊的支持。\n下面这个例子表示将 `include` 视为 `require` 。\n```json\n\"Lua.runtime.special\" : {\n \"include\" : \"require\"\n}\n```\n",
387387
"patternProperties": {
388388
"": {
389389
"default": "require",

setting/schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@
383383
"type": "array"
384384
},
385385
"Lua.runtime.special": {
386-
"markdownDescription": "The custom global variables are regarded as some special built-in variables, and the language server will provide special support",
386+
"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",
387387
"patternProperties": {
388388
"": {
389389
"default": "require",

0 commit comments

Comments
 (0)