Skip to content

Commit 8b1657a

Browse files
committed
1.11.0
1 parent 4a0ea33 commit 8b1657a

File tree

8 files changed

+32
-3
lines changed

8 files changed

+32
-3
lines changed

changelog.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# changelog
22

3+
## 1.11.0
4+
`2021-1-5`
5+
* `NEW` `Lua.runtime.plugin`
6+
* `NEW` intelli-scense: improved `m.f = function (self) end` from `self` to `m`
7+
* `CHG` performance optimization
8+
* `CHG` completion: improve performance of workspace words
9+
* `FIX` hover: tail comments may be cutted
10+
* `FIX` runtime errors
11+
312
## 1.10.0
413
`2021-1-4`
514
* `NEW` workspace: supports `.dll`(`.so`) in `require`

package.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -887,6 +887,12 @@
887887
"scope": "resource",
888888
"type": "array"
889889
},
890+
"Lua.runtime.plugin": {
891+
"default": ".vscode/lua/plugin.lua",
892+
"markdownDescription": "%config.runtime.plugin%",
893+
"scope": "resource",
894+
"type": "string"
895+
},
890896
"Lua.runtime.special": {
891897
"markdownDescription": "%config.runtime.special%",
892898
"patternProperties": {
@@ -1041,5 +1047,5 @@
10411047
"type": "git",
10421048
"url": "https://github.com/sumneko/lua-language-server"
10431049
},
1044-
"version": "1.10.0"
1050+
"version": "1.11.0"
10451051
}

package.nls.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
"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.",
3535
"config.runtime.nonstandardSymbol": "Supports non-standard symbols. Make sure that your runtime environment supports these symbols.",
3636
"config.runtime.path": "`package.path`",
37+
"config.runtime.plugin": "(Proposed) Plugin path.",
3738
"config.runtime.special": "The custom global variables are regarded as some special built-in variables, and the language server will provide special support\nThe following example shows that 'include' is treated as' require '.\n```json\n\"Lua.runtime.special\" : {\n \"include\" : \"require\"\n}\n```\n",
3839
"config.runtime.unicodeName": "Allows Unicode characters in name.",
3940
"config.runtime.version": "Lua runtime version.",

package.nls.zh-cn.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
"config.intelliSense.searchDepth": "设置智能感知的搜索深度。增大该值可以增加准确度,但会降低性能。不同的项目对该设置的容忍度差异较大,请自己调整为合适的值。",
3838
"config.runtime.nonstandardSymbol": "支持非标准的符号。请务必确认你的运行环境支持这些符号。",
3939
"config.runtime.path": "`package.path`",
40+
"config.runtime.plugin": "(实验)插件路径。",
4041
"config.runtime.special": "将自定义全局变量视为一些特殊的内置变量,语言服务将提供特殊的支持。\n下面这个例子表示将 `include` 视为 `require` 。\n```json\n\"Lua.runtime.special\" : {\n \"include\" : \"require\"\n}\n```\n",
4142
"config.runtime.unicodeName": "允许在名字中使用 Unicode 字符。",
4243
"config.runtime.version": "Lua运行版本。",

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.10.0"
3+
local VERSION = "1.11.0"
44

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

server

setting/schema-zh-cn.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -871,6 +871,12 @@
871871
"scope": "resource",
872872
"type": "array"
873873
},
874+
"Lua.runtime.plugin": {
875+
"default": ".vscode/lua/plugin.lua",
876+
"markdownDescription": "(实验)插件路径。",
877+
"scope": "resource",
878+
"type": "string"
879+
},
874880
"Lua.runtime.special": {
875881
"markdownDescription": "将自定义全局变量视为一些特殊的内置变量,语言服务将提供特殊的支持。\n下面这个例子表示将 `include` 视为 `require` 。\n```json\n\"Lua.runtime.special\" : {\n \"include\" : \"require\"\n}\n```\n",
876882
"patternProperties": {

setting/schema.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -871,6 +871,12 @@
871871
"scope": "resource",
872872
"type": "array"
873873
},
874+
"Lua.runtime.plugin": {
875+
"default": ".vscode/lua/plugin.lua",
876+
"markdownDescription": "(Proposed) Plugin path.",
877+
"scope": "resource",
878+
"type": "string"
879+
},
874880
"Lua.runtime.special": {
875881
"markdownDescription": "The custom global variables are regarded as some special built-in variables, and the language server will provide special support\nThe following example shows that 'include' is treated as' require '.\n```json\n\"Lua.runtime.special\" : {\n \"include\" : \"require\"\n}\n```\n",
876882
"patternProperties": {

0 commit comments

Comments
 (0)