Skip to content

Commit ad4a9ad

Browse files
committed
update LSP client dependency
1 parent 8640525 commit ad4a9ad

File tree

6 files changed

+150
-153
lines changed

6 files changed

+150
-153
lines changed

package-lock.json

Lines changed: 43 additions & 43 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"icon": "images/dlogo-square.png",
1212
"license": "MIT",
1313
"engines": {
14-
"vscode": "^1.57.0"
14+
"vscode": "^1.60.0"
1515
},
1616
"categories": [
1717
"Programming Languages",
@@ -1458,7 +1458,7 @@
14581458
"ncp": "^2.0.0",
14591459
"rimraf": "^3.0.2",
14601460
"string-argv": "^0.3.1",
1461-
"vscode-languageclient": "^8.0.0-next.2",
1461+
"vscode-languageclient": "^8.0.2",
14621462
"vscode-test-adapter-api": "^1.9.0",
14631463
"which": "^2.0.2"
14641464
},
@@ -1469,7 +1469,7 @@
14691469
"@types/mocha": "^9.0.0",
14701470
"@types/node": "^12.20.23",
14711471
"@types/parse5": "^5.0.3",
1472-
"@types/vscode": "^1.57.0",
1472+
"@types/vscode": "^1.60.0",
14731473
"@types/which": "^2.0.1",
14741474
"glob": "^7.1.7",
14751475
"js-yaml": "^3.14.1",

src/compilers.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export async function setupCompilersUI() {
4141
if (i == 0) {
4242
items.push({
4343
label: "$(find-expanded) Detected installations",
44-
kind: 2, // proposed type for separators: https://github.com/microsoft/vscode/blob/main/src/vscode-dts/vscode.proposed.quickPickSeparators.d.ts
44+
kind: vscode.QuickPickItemKind.Separator,
4545
});
4646
}
4747

@@ -56,7 +56,7 @@ export async function setupCompilersUI() {
5656
}
5757
items.push({
5858
label: "$(find-expanded) Manual configuration",
59-
kind: 2,
59+
kind: vscode.QuickPickItemKind.Separator,
6060
});
6161
let manualSelect: vscode.QuickPickItem;
6262
let dmdItem: vscode.QuickPickItem;
@@ -85,7 +85,7 @@ export async function setupCompilersUI() {
8585

8686
introQuickPick.onDidAccept(async (e) => {
8787
let selection = <UIQuickPickItem>introQuickPick.selectedItems[0];
88-
if (selection.kind === 2)
88+
if (selection.kind === vscode.QuickPickItemKind.Separator)
8989
return;
9090

9191
introQuickPick.hide();

src/debug.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,8 @@ class DDebugProvider implements vscode.DebugConfigurationProvider {
405405
showReuseMessage: false
406406
},
407407
problemMatchers: ["$dmd"],
408-
group: vscode.TaskGroup.Build
408+
group: vscode.TaskGroup.Build,
409+
scope: undefined
409410
}, undefined);
410411

411412
// hacky wait until finished task

0 commit comments

Comments
 (0)