-
Notifications
You must be signed in to change notification settings - Fork 751
refactor(ec2): swap order of icons. #6224
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| "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...", |
There was a problem hiding this comment.
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.
| { | ||
| "command": "aws.ec2.linkToLaunch", | ||
| "group": "0@1", | ||
| "group": "0@0", |
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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.
## Problem EC2 icons are in an awkward order with the link to launch in-between the two connect options. ## Solution https://stackoverflow.com/questions/47613141/how-to-specify-the-order-of-icons-in-an-explorer-view-in-a-vscode-extension. Also update descriptions to fit UX guidelines.
Problem
The icons are in an awkward order with the link to launch in-between the two connect options.

Solution
(https://stackoverflow.com/questions/47613141/how-to-specify-the-order-of-icons-in-an-explorer-view-in-a-vscode-extension.)
What it looks like now:

This PR also updates some descriptions to fit with conventions.
feature/xbranches will not be squash-merged at release time.License: I confirm that my contribution is made under the terms of the Apache 2.0 license.