Skip to content

Commit

Permalink
v1.27.1
Browse files Browse the repository at this point in the history
onReady отсутствует в типе
  • Loading branch information
nixel2007 committed Feb 22, 2023
1 parent d1b0cf2 commit 3bdcbd0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 49 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## 1.27.0
## 1.27.1

* Обновление language-client до версии 8.1.0
* Поддержка клиентских команд запуска тестов от BSL Language Server
Expand Down
47 changes: 2 additions & 45 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "Language 1C (BSL)",
"description": "Syntax highlighting for 1C:Enterprise 8.",
"icon": "images/1c-syntax.png",
"version": "1.27.0",
"version": "1.27.1",
"publisher": "1c-syntax",
"galleryBanner": {
"color": "#0000FF",
Expand Down
4 changes: 2 additions & 2 deletions src/features/languageClientProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export default class LanguageClientProvider {

this.languageClient.start();

await this.languageClient.onReady();
// await this.languageClient.onReady();
this.bslLsReady = true;
}),
vscode.commands.registerCommand(RUN_ALL_TESTS_COMMAND, async (args: RunTestArgs) => {
Expand All @@ -147,7 +147,7 @@ export default class LanguageClientProvider {
})
);

await this.languageClient.onReady();
// await this.languageClient.onReady();
this.bslLsReady = true;
}

Expand Down

0 comments on commit 3bdcbd0

Please sign in to comment.