Skip to content

Commit 3dd99f8

Browse files
committed
2.6.4
1 parent a43bcf9 commit 3dd99f8

File tree

7 files changed

+18
-6
lines changed

7 files changed

+18
-6
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ If you need to compile by yourself, please refer to [here](https://github.com/su
142142
* [Ketho](https://github.com/Ketho)
143143
* [Folke Lemaitre](https://github.com/folke)
144144
* [Vikas Raj](https://github.com/numToStr)
145+
* [kevinhwang91](https://github.com/kevinhwang91)
145146

146147
## Telemetry
147148

changelog.md

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

3+
## 2.6.4
4+
`2022-2-9`
5+
* `CHG` completion: reduced sorting priority for postfix completion
6+
* `FIX` [#936](https://github.com/sumneko/lua-language-server/issues/936)
7+
* `FIX` [#937](https://github.com/sumneko/lua-language-server/issues/937)
8+
* `FIX` [#940](https://github.com/sumneko/lua-language-server/issues/940)
9+
* `FIX` [#941](https://github.com/sumneko/lua-language-server/issues/941)
10+
* `FIX` [#941](https://github.com/sumneko/lua-language-server/issues/942)
11+
* `FIX` [#943](https://github.com/sumneko/lua-language-server/issues/943)
12+
* `FIX` [#946](https://github.com/sumneko/lua-language-server/issues/946)
13+
314
## 2.6.3
415
`2022-1-25`
516
* `FIX` new files are not loaded correctly

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1055,7 +1055,7 @@
10551055
"type": "object"
10561056
},
10571057
"Lua.diagnostics.workspaceDelay": {
1058-
"default": 3,
1058+
"default": 3000,
10591059
"markdownDescription": "%config.diagnostics.workspaceDelay%",
10601060
"scope": "resource",
10611061
"type": "integer"
@@ -1677,5 +1677,5 @@
16771677
"type": "git",
16781678
"url": "https://github.com/sumneko/lua-language-server"
16791679
},
1680-
"version": "2.6.3"
1680+
"version": "2.6.4"
16811681
}

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 = "2.6.3"
3+
local VERSION = "2.6.4"
44

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

server

setting/schema-zh-cn.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1109,7 +1109,7 @@
11091109
"type": "object"
11101110
},
11111111
"diagnostics.workspaceDelay": {
1112-
"default": 3,
1112+
"default": 3000,
11131113
"markdownDescription": "进行工作区诊断的延迟(毫秒)。当你启动工作区,或编辑了任意文件后,将会在后台对整个工作区进行重新诊断。设置为负数可以禁用工作区诊断。",
11141114
"scope": "resource",
11151115
"type": "integer"

setting/schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1109,7 +1109,7 @@
11091109
"type": "object"
11101110
},
11111111
"diagnostics.workspaceDelay": {
1112-
"default": 3,
1112+
"default": 3000,
11131113
"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.",
11141114
"scope": "resource",
11151115
"type": "integer"

0 commit comments

Comments
 (0)