This commit is contained in:
csh 2025-07-02 14:30:51 +08:00
parent dbc95ff098
commit f7b25a1efb
8 changed files with 6 additions and 2 deletions

View File

@ -2,6 +2,10 @@
Notable changes to the `TSL` extension will be documented in this file. Notable changes to the `TSL` extension will be documented in this file.
## [2.2.0]: 2025-07-02
- 代码重构
## [2.1.0]: 2025-06-25 ## [2.1.0]: 2025-06-25
- 更换`LSP`日志模块,启动参数`verbose -> trace` - 更换`LSP`日志模块,启动参数`verbose -> trace`

Binary file not shown.

Binary file not shown.

View File

@ -1,7 +1,7 @@
{ {
"name": "tsl-devkit", "name": "tsl-devkit",
"displayName": "TSL", "displayName": "TSL",
"version": "2.1.0", "version": "2.2.0",
"description": "TSL syntax highlighter support for VSCode.", "description": "TSL syntax highlighter support for VSCode.",
"publisher": "csh", "publisher": "csh",
"homepage": "https://git.mytsl.cn/csh/tsl-devkit", "homepage": "https://git.mytsl.cn/csh/tsl-devkit",

View File

@ -40,7 +40,7 @@ export function activate(context: vscode.ExtensionContext) {
} }
const serverOptions: ServerOptions = { 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} debug: {command: serverExe, transport: TransportKind.stdio}
} }

Binary file not shown.

Binary file not shown.

Binary file not shown.