Skip to content

Commit d62defd

Browse files
committed
0.6.9
1 parent 4f60223 commit d62defd

File tree

4 files changed

+40
-4
lines changed

4 files changed

+40
-4
lines changed

CHANGELOG.md

+19-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,25 @@
22

33
[English Change Log](CHANGELOG_EN.md)
44

5-
# 0.6.7
5+
# 0.6.9
6+
7+
`FIX` 修复全局变量判断问题
8+
9+
`FIX` 修复双倍打开文件的BUG
10+
11+
`NEW` 增加大量代码片段
12+
13+
`NEW` 推断回调函数的参数类型
14+
15+
`NEW` 强化inlayHint, 函数调用参数上的inlayHint可以点击跳转
16+
17+
`NEW` 提供continue补全(转化为goto continue)
18+
19+
`NEW` 完善诊断管理, 可以通过---@diagnostic 系列注解关闭当前行和当前文件的诊断
20+
21+
`NEW` 提供未定义全局变量的诊断
22+
23+
# 0.6.8
624

725
`FIX` 临时把add改为TryAdd, 修复启动错误
826

CHANGELOG_EN.md

+19-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
# Change Log
22

3-
# 0.6.7
3+
# 0.6.9
4+
5+
`FIX` Fixed global variable detection issue
6+
7+
`FIX` Fixed double opening file bug
8+
9+
`NEW` Added a large number of code snippets
10+
11+
`NEW` Inferred parameter types for callback functions
12+
13+
`NEW` Enhanced inlayHint, inlayHint on function call parameters can be clicked to jump
14+
15+
`NEW` Provided continue completion (converted to goto continue)
16+
17+
`NEW` Improved diagnostic management, can disable diagnostics for current line and current file using ---@diagnostic annotations
18+
19+
`NEW` Provided diagnostics for undefined global variables
20+
21+
# 0.6.8
422

523
`FIX` Temporarily change add to TryAdd, fix startup error
624

build/config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ exports.default = {
33
emmyDebuggerUrl: 'https://github.com/EmmyLua/EmmyLuaDebugger/releases/download',
44
lanServerVersion: "0.5.16",
55
lanServerUrl: 'https://github.com/EmmyLua/EmmyLua-LanguageServer/releases/download',
6-
newLanguageServerVersion: "0.1.7",
6+
newLanguageServerVersion: "0.1.8",
77
newLanguageServerUrl: "https://github.com/CppCXY/EmmyLuaAnalyzer/releases/download"
88
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "emmylua",
33
"displayName": "EmmyLua",
44
"description": "EmmyLua for vscode",
5-
"version": "0.6.8",
5+
"version": "0.6.9",
66
"icon": "res/icon.png",
77
"publisher": "tangzx",
88
"engines": {

0 commit comments

Comments
 (0)