diff --git a/package-lock.json b/package-lock.json index ebd9cc6..6636ca0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -31,7 +31,7 @@ "@typescript-eslint/eslint-plugin-tslint": "^6.2.0", "@typescript-eslint/parser": "^6.2.0", "@vscode/dts": "^0.4.0", - "@vscode/jupyter-extension": "^0.0.3", + "@vscode/jupyter-extension": "^0.0.5", "@vscode/test-electron": "^2.3.4", "@vscode/test-web": "^0.0.29", "chai": "^4.3.8", @@ -57,7 +57,7 @@ "ws": "^8.14.1" }, "engines": { - "vscode": "^1.82.0" + "vscode": "^1.83.0" }, "optionalDependencies": { "fsevents": "^2.3.2" @@ -1348,9 +1348,9 @@ } }, "node_modules/@vscode/jupyter-extension": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/@vscode/jupyter-extension/-/jupyter-extension-0.0.3.tgz", - "integrity": "sha512-X9idKObyXbUfS2G1NWIgzt/tTh4QF8d6WdR6xe5U79TVrTIXi4CjAbOFi38/a57r2Q5Djn/NOMesmpk5MmjfLw==", + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/@vscode/jupyter-extension/-/jupyter-extension-0.0.5.tgz", + "integrity": "sha512-Uj8Nq5GWHSknJsPCBBm7eyHqmlNDvp1qlNT4waHO9HnO+6//7IxKdqLC+4Jcfn0eFmCNY2MTVzR11MKVPe3MVA==", "dev": true }, "node_modules/@vscode/test-electron": { @@ -9172,9 +9172,9 @@ } }, "@vscode/jupyter-extension": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/@vscode/jupyter-extension/-/jupyter-extension-0.0.3.tgz", - "integrity": "sha512-X9idKObyXbUfS2G1NWIgzt/tTh4QF8d6WdR6xe5U79TVrTIXi4CjAbOFi38/a57r2Q5Djn/NOMesmpk5MmjfLw==", + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/@vscode/jupyter-extension/-/jupyter-extension-0.0.5.tgz", + "integrity": "sha512-Uj8Nq5GWHSknJsPCBBm7eyHqmlNDvp1qlNT4waHO9HnO+6//7IxKdqLC+4Jcfn0eFmCNY2MTVzR11MKVPe3MVA==", "dev": true }, "@vscode/test-electron": { diff --git a/package.json b/package.json index 706e0e5..c850962 100644 --- a/package.json +++ b/package.json @@ -105,7 +105,7 @@ "@typescript-eslint/eslint-plugin-tslint": "^6.2.0", "@typescript-eslint/parser": "^6.2.0", "@vscode/dts": "^0.4.0", - "@vscode/jupyter-extension": "^0.0.3", + "@vscode/jupyter-extension": "^0.0.5", "@vscode/test-electron": "^2.3.4", "@vscode/test-web": "^0.0.29", "chai": "^4.3.8", diff --git a/src/jupyterIntegration.ts b/src/jupyterIntegration.ts index 52f91b8..81b75bf 100644 --- a/src/jupyterIntegration.ts +++ b/src/jupyterIntegration.ts @@ -124,7 +124,7 @@ export class JupyterServerIntegration implements JupyterServerProvider, JupyterS const label = Localized.connectToToTheJupyterServer(url); return [{ label, url } as JupyterServerCommand]; } - return [{ label: Localized.labelOfCommandToEnterUrl }]; + return [{ label: Localized.labelOfCommandToEnterUrl, picked: true }]; } async removeJupyterServer?(server: JupyterServer): Promise { const tokenSource = new CancellationTokenSource();