Skip to content

Commit 89633ac

Browse files
committed
0.19.3
1 parent 549ea58 commit 89633ac

File tree

6 files changed

+6
-4
lines changed

6 files changed

+6
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,5 +494,5 @@
494494
"type": "git",
495495
"url": "https://github.com/sumneko/lua-language-server"
496496
},
497-
"version": "0.19.2"
497+
"version": "0.19.3"
498498
}

package.nls.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"config.hover.enable": "Enable hover.",
2323
"config.hover.viewNumber": "Hover to view numeric content (only if literal is not decimal).",
2424
"config.hover.viewString": "Hover to view the contents of a string (only if the literal contains an escape character).",
25+
"config.hover.viewStringMax": "The maximum length of a hover to view the contents of a string.",
2526
"config.runtime.path": "`package.path`",
2627
"config.runtime.version": "Lua runtime version.",
2728
"config.signatureHelp.enable": "Enable signature help.",

package.nls.zh-cn.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"config.hover.enable": "启用悬停提示。",
2323
"config.hover.viewNumber": "悬停提示查看数字内容(仅当字面量不是十进制时)。",
2424
"config.hover.viewString": "悬停提示查看字符串内容(仅当字面量包含转义符时)。",
25+
"config.hover.viewStringMax": "悬停提示查看字符串内容时的最大长度。",
2526
"config.runtime.path": "`package.path`",
2627
"config.runtime.version": "Lua运行版本。",
2728
"config.signatureHelp.enable": "启用参数提示。",

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'
22

3-
local VERSION = "0.19.2"
3+
local VERSION = "0.19.3"
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
@@ -342,7 +342,7 @@
342342
},
343343
"Lua.hover.viewStringMax": {
344344
"default": 1000,
345-
"markdownDescription": "%config.hover.viewStringMax%",
345+
"markdownDescription": "悬停提示查看字符串内容时的最大长度。",
346346
"scope": "resource",
347347
"type": "integer"
348348
},

setting/schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@
342342
},
343343
"Lua.hover.viewStringMax": {
344344
"default": 1000,
345-
"markdownDescription": "%config.hover.viewStringMax%",
345+
"markdownDescription": "The maximum length of a hover to view the contents of a string.",
346346
"scope": "resource",
347347
"type": "integer"
348348
},

0 commit comments

Comments
 (0)