v2.2.0
This commit is contained in:
parent
dbc95ff098
commit
f7b25a1efb
|
|
@ -2,6 +2,10 @@
|
|||
|
||||
Notable changes to the `TSL` extension will be documented in this file.
|
||||
|
||||
## [2.2.0]: 2025-07-02
|
||||
|
||||
- 代码重构
|
||||
|
||||
## [2.1.0]: 2025-06-25
|
||||
|
||||
- 更换`LSP`日志模块,启动参数`verbose -> trace`
|
||||
|
|
|
|||
Binary file not shown.
Binary file not shown.
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "tsl-devkit",
|
||||
"displayName": "TSL",
|
||||
"version": "2.1.0",
|
||||
"version": "2.2.0",
|
||||
"description": "TSL syntax highlighter support for VSCode.",
|
||||
"publisher": "csh",
|
||||
"homepage": "https://git.mytsl.cn/csh/tsl-devkit",
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ export function activate(context: vscode.ExtensionContext) {
|
|||
}
|
||||
|
||||
const serverOptions: ServerOptions = {
|
||||
run: {command: serverExe, transport: TransportKind.stdio, args: ['--log=verbose', '--log-stderr']},
|
||||
run: {command: serverExe, transport: TransportKind.stdio, args: ['--log=trace', '--log-stderr']},
|
||||
debug: {command: serverExe, transport: TransportKind.stdio}
|
||||
}
|
||||
|
||||
|
|
|
|||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue