We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6781ce commit fecc828Copy full SHA for fecc828
package.json
@@ -29,9 +29,6 @@
29
"onCommand:coder.connect",
30
"onUri"
31
],
32
- "extensionDependencies": [
33
- "ms-vscode-remote.remote-ssh"
34
- ],
35
"main": "./dist/extension.js",
36
"contributes": {
37
"configuration": {
src/extension.ts
@@ -29,6 +29,7 @@ export async function activate(ctx: vscode.ExtensionContext): Promise<void> {
vscode.extensions.getExtension("anysphere.open-remote-ssh") ||
vscode.extensions.getExtension("ms-vscode-remote.remote-ssh")
if (!remoteSSHExtension) {
+ vscode.window.showErrorMessage("Remote SSH extension not found, cannot activate Coder extension")
throw new Error("Remote SSH extension not found")
}
// eslint-disable-next-line @typescript-eslint/no-explicit-any
0 commit comments