This commit is contained in:
csh 2025-07-10 18:08:09 +08:00
parent a07586d942
commit 540d58e86f
5 changed files with 6 additions and 5 deletions

View File

@ -2,6 +2,10 @@
Notable changes to the `TSL` extension will be documented in thio file. Notable changes to the `TSL` extension will be documented in thio file.
## [2.3.1]: 2025-07-10
- 修复:关键字`initialization`拼写错误
## [2.3.0]: 2025-07-03 ## [2.3.0]: 2025-07-03
- 修改插件名为`tsl-tools` - 修改插件名为`tsl-tools`

View File

@ -1,3 +0,0 @@
cp ../lsp-server/build/arch/tsl-server ./bin/tsl-server
cp ../lsp-server/build/msys2/tsl-server.exe ./bin/tsl-server.exe
npx vsce package

View File

@ -1,7 +1,7 @@
{ {
"name": "tsl-tools", "name": "tsl-tools",
"displayName": "TSL", "displayName": "TSL",
"version": "2.3.0", "version": "2.3.1",
"description": "VSCode extension for TSL, with syntax highlighting, code completion, and formatting", "description": "VSCode extension for TSL, with syntax highlighting, code completion, and formatting",
"publisher": "csh", "publisher": "csh",
"homepage": "https://git.mytsl.cn/csh/tsl-devkit", "homepage": "https://git.mytsl.cn/csh/tsl-devkit",

View File

@ -431,7 +431,7 @@
"patterns": [ "patterns": [
{ {
"name": "keyword.control.program-structure.tsl", "name": "keyword.control.program-structure.tsl",
"match": "(?i)\\b(program|function|procedure|unit|uses|implementation|interface|initalization|finalization)\\b" "match": "(?i)\\b(program|function|procedure|unit|uses|implementation|interface|initialization|finalization)\\b"
}, },
{ {
"name": "keyword.control.interface.tsl", "name": "keyword.control.interface.tsl",