File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 24
24
"categories" : [
25
25
" Other"
26
26
],
27
+ "extensionPack" : [
28
+ " ms-vscode-remote.remote-ssh"
29
+ ],
27
30
"activationEvents" : [
28
31
" onResolveRemoteAuthority:ssh-remote" ,
29
32
" onCommand:coder.connect" ,
Original file line number Diff line number Diff line change @@ -19,14 +19,10 @@ export async function activate(ctx: vscode.ExtensionContext): Promise<void> {
19
19
// This is janky, but that's alright since it provides such minimal
20
20
// functionality to the extension.
21
21
//
22
- // The jeanp413 extension is available for vscodium and all bundled from there,
23
- // so we check for that first. If it's not available, we check for the windsurf, then
24
- // anysphere extension which is the cursor fork of the first one. If that's not
25
- // available, we check for the official ms remote-ssh extension.
22
+ // Cursor and VSCode are covered by ms remote, and the only other is windsurf for now
23
+ // Means that vscodium is not supported by this for now
26
24
const remoteSSHExtension =
27
- vscode . extensions . getExtension ( "jeanp413.open-remote-ssh" ) ||
28
25
vscode . extensions . getExtension ( "codeium.windsurf-remote-openssh" ) ||
29
- vscode . extensions . getExtension ( "anysphere.open-remote-ssh" ) ||
30
26
vscode . extensions . getExtension ( "ms-vscode-remote.remote-ssh" )
31
27
if ( ! remoteSSHExtension ) {
32
28
vscode . window . showErrorMessage ( "Remote SSH extension not found, cannot activate Coder extension" )
You can’t perform that action at this time.
0 commit comments