Merge branch 'lsp-server'

This commit is contained in:
csh
2025-07-02 14:39:21 +08:00
73 changed files with 6768 additions and 823 deletions
+8
View File
@@ -2,6 +2,14 @@
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`
## [2.0.1]: 2025-06-30
- 修复:变量类型声明误匹配问题,如`len:], "','")$"');`
Binary file not shown.
Binary file not shown.
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "tsl-devkit",
"version": "2.0.0",
"version": "2.1.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "tsl-devkit",
"version": "2.0.0",
"version": "2.1.0",
"license": "AGPL-3.0-or-later",
"dependencies": {
"vscode-languageclient": "^9.0.1"
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "tsl-devkit",
"displayName": "TSL",
"version": "2.0.1",
"version": "2.2.0",
"description": "TSL syntax highlighter support for VSCode.",
"publisher": "csh",
"homepage": "https://git.mytsl.cn/csh/tsl-devkit",
+1 -1
View File
@@ -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.