Commit d62defd 1 parent 4f60223 commit d62defd Copy full SHA for d62defd
File tree 4 files changed +40
-4
lines changed
4 files changed +40
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
[ English Change Log] ( CHANGELOG_EN.md )
4
4
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
6
24
7
25
` FIX ` 临时把add改为TryAdd, 修复启动错误
8
26
Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
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
4
22
5
23
` FIX ` Temporarily change add to TryAdd, fix startup error
6
24
Original file line number Diff line number Diff line change @@ -3,6 +3,6 @@ exports.default = {
3
3
emmyDebuggerUrl : 'https://github.com/EmmyLua/EmmyLuaDebugger/releases/download' ,
4
4
lanServerVersion : "0.5.16" ,
5
5
lanServerUrl : 'https://github.com/EmmyLua/EmmyLua-LanguageServer/releases/download' ,
6
- newLanguageServerVersion : "0.1.7 " ,
6
+ newLanguageServerVersion : "0.1.8 " ,
7
7
newLanguageServerUrl : "https://github.com/CppCXY/EmmyLuaAnalyzer/releases/download"
8
8
}
Original file line number Diff line number Diff line change 2
2
"name" : " emmylua" ,
3
3
"displayName" : " EmmyLua" ,
4
4
"description" : " EmmyLua for vscode" ,
5
- "version" : " 0.6.8 " ,
5
+ "version" : " 0.6.9 " ,
6
6
"icon" : " res/icon.png" ,
7
7
"publisher" : " tangzx" ,
8
8
"engines" : {
You can’t perform that action at this time.
0 commit comments