Skip to content
Merged
Show file tree
Hide file tree
Changes from 17 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/core/package.nls.json
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,8 @@
"AWS.command.refreshAwsExplorer": "Refresh Explorer",
"AWS.command.refreshCdkExplorer": "Refresh CDK Explorer",
"AWS.command.cdk.help": "View CDK Documentation",
"AWS.command.ec2.openTerminal": "Open terminal to EC2 instance...",
"AWS.command.ec2.openRemoteConnection": "Connect to EC2 instance in New Window...",
"AWS.command.ec2.openTerminal": "Connect Terminal to EC2 Instance...",
"AWS.command.ec2.openRemoteConnection": "Connect VS Code to EC2 Instance...",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Normally we would avoid hardcoding the IDE name. But since vscode remote-ssh requires VSCode, this works for now.

"AWS.command.ec2.startInstance": "Start EC2 Instance",
"AWS.command.ec2.linkToLaunch": "Launch EC2 Instance",
"AWS.command.ec2.stopInstance": "Stop EC2 Instance",
Expand Down
4 changes: 2 additions & 2 deletions packages/toolkit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1462,12 +1462,12 @@
},
{
"command": "aws.ec2.linkToLaunch",
"group": "0@1",
"group": "0@0",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does this avoid the need for the command name changes? We probably should stick with Open Terminal if possible, since we use that in the command-palette names, and for ECS, CodeCatalyst, etc.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yea it does, I can swap it back.

"when": "viewItem =~ /^(awsEc2ParentNode)$/ && config.aws.experiments.ec2RemoteConnect"
},
{
"command": "aws.ec2.linkToLaunch",
"group": "inline@1",
"group": "inline@0",
"when": "viewItem =~ /^(awsEc2ParentNode)$/ && config.aws.experiments.ec2RemoteConnect"
},
{
Expand Down
Loading